Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion index.php
Original file line number Diff line number Diff line change
Expand Up @@ -330,7 +330,7 @@ class="search-input"
</div>
<div class="form-group">
<label for="contact_message">Message <span class="required">*</span></label>
<textarea id="contact_message" name="contact_message" placeholder="Write your message here..." required></textarea>
<textarea id="contact_message" name="contact_message" placeholder="e.g. Hi, I am a recruiter interested in connecting with Computer Science graduates for a software engineering role..." required></textarea>
</div>
<button type="submit" class="submit-button">Send Message</button>
</form>
Expand Down
4 changes: 2 additions & 2 deletions update.php
Original file line number Diff line number Diff line change
Expand Up @@ -567,12 +567,12 @@

<div class="form-group">
<label for="profile">Profile Summary <span class="required">*</span></label>
<textarea id="profile" name="profile"><?php echo htmlspecialchars($cv['profile']); ?></textarea>
<textarea id="profile" name="profile" placeholder="e.g. Third-year Computer Science student with experience in Python and web development, looking for graduate roles in software engineering..."><?php echo htmlspecialchars($cv['profile']); ?></textarea>
</div>

<div class="form-group">
<label for="education">Education <span class="required">*</span></label>
<textarea id="education" name="education"><?php echo htmlspecialchars($cv['education']); ?></textarea>
<textarea id="education" name="education" placeholder="e.g. BEng Computer Science, Aston University (2024-present)"><?php echo htmlspecialchars($cv['education']); ?></textarea>
</div>

<div class="form-group">
Expand Down
Loading