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 login.php
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,7 @@
id="email"
name="email"
value="<?php echo isset($_POST['email']) ? htmlspecialchars($_POST['email']) : ''; ?>"
placeholder="e.g. yourname@aston.ac.uk"
placeholder="e.g. alex.johnson@aston.ac.uk"
autocomplete="email"
<?php echo $lockedOut ? 'disabled' : ''; ?>>
</div>
Expand Down
8 changes: 4 additions & 4 deletions register.php
Original file line number Diff line number Diff line change
Expand Up @@ -293,7 +293,7 @@
<label for="email">Email Address <span class="required">*</span></label>
<input type="email" id="email" name="email"
value="<?php echo htmlspecialchars($old['email']); ?>"
placeholder="e.g. yourname@aston.ac.uk"
placeholder="e.g. alex.johnson@aston.ac.uk"
autocomplete="email">
</div>

Expand Down Expand Up @@ -338,7 +338,7 @@ class="password-toggle"
<label for="keyprogramming">Key Programming Language <span class="required">*</span></label>
<input type="text" id="keyprogramming" name="keyprogramming"
value="<?php echo htmlspecialchars($old['keyprogramming']); ?>"
placeholder="e.g. Python, C++, Java">
placeholder="e.g. Python">
</div>

<div class="form-group">
Expand All @@ -355,7 +355,7 @@ class="password-toggle"
<div class="form-group">
<label for="profile">Profile Summary <span class="required">*</span></label>
<textarea id="profile" name="profile"
placeholder="Write a short summary about yourself"><?php echo htmlspecialchars($old['profile']); ?></textarea>
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($old['profile']); ?></textarea>
</div>

<div class="form-group">
Expand All @@ -380,7 +380,7 @@ class="password-toggle"
</label>
<input type="text" id="URLlinks" name="URLlinks"
value="<?php echo htmlspecialchars($old['URLlinks']); ?>"
placeholder="e.g. https://github.com/yourusername">
placeholder="e.g. https://github.com/alexjohnson, https://linkedin.com/in/alexjohnson">
</div>

<button type="submit" class="submit-button">Create Account</button>
Expand Down
2 changes: 1 addition & 1 deletion update.php
Original file line number Diff line number Diff line change
Expand Up @@ -591,7 +591,7 @@
</label>
<input type="text" id="URLlinks" name="URLlinks"
value="<?php echo htmlspecialchars($cv['URLlinks'] ?? ''); ?>"
placeholder="e.g. https://github.com/yourusername">
placeholder="e.g. https://github.com/alexjohnson, https://linkedin.com/in/alexjohnson">
</div>

<button type="submit" class="submit-button">Save Changes</button>
Expand Down
Loading