2025-11-17 18:56:31 -05:00
|
|
|
<!DOCTYPE html>
|
|
|
|
|
<html>
|
|
|
|
|
<head>
|
|
|
|
|
<title>Personal Information</title>
|
|
|
|
|
<link rel="stylesheet" href="../assets/css/style.css">
|
|
|
|
|
</head>
|
|
|
|
|
<body>
|
|
|
|
|
<div class="center">
|
|
|
|
|
<form id="infoForm">
|
2025-11-29 19:02:01 -05:00
|
|
|
<h2>Personal Information</h2>
|
|
|
|
|
<hr>
|
2025-11-17 18:56:31 -05:00
|
|
|
<div class="inputGroup">
|
|
|
|
|
<p>Username:</p>
|
|
|
|
|
<p id="usernameField">[username]</p>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="inputGroup">
|
|
|
|
|
<p>First Name:</p>
|
|
|
|
|
<input type="text" id="firstNameField" placeholder="">
|
|
|
|
|
</div>
|
|
|
|
|
<div class="inputGroup">
|
|
|
|
|
<p>Last Name:</p>
|
|
|
|
|
<input type="text" id="lastNameField" placeholder="">
|
|
|
|
|
</div>
|
|
|
|
|
<div class="inputGroup">
|
|
|
|
|
<p>Date of Birth:</p>
|
|
|
|
|
<input type="date" id="dobField" placeholder="">
|
|
|
|
|
</div>
|
|
|
|
|
<button type="submit">Update Information</button>
|
2025-11-29 19:02:01 -05:00
|
|
|
<a href="/home">Return Home</a>
|
2025-11-17 18:56:31 -05:00
|
|
|
</form>
|
|
|
|
|
|
2025-11-28 13:54:57 -05:00
|
|
|
<div class="error">
|
|
|
|
|
<p>Error Message</p>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="success">
|
|
|
|
|
<p>Information updated successfully</p>
|
|
|
|
|
</div>
|
|
|
|
|
|
2025-11-17 18:56:31 -05:00
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<script type="module" src="info.js"></script>
|
|
|
|
|
</body>
|
|
|
|
|
</html>
|