-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathuserprofile.html
More file actions
29 lines (28 loc) · 873 Bytes
/
userprofile.html
File metadata and controls
29 lines (28 loc) · 873 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
<!-- <!DOCTYPE html>
<html>
<head>
<title>User Profile</title>
<link rel="stylesheet" type="text/css" href="style.css" />
<link
href="https://fonts.googleapis.com/css2?family=Roboto&display=swap"
rel="stylesheet"
/>
</head>
<body>
<div class="container">
<h1>User Profile</h1>
<form id="profileForm" onsubmit="return saveProfile()">
<label for="dob">Date of Birth:</label>
<input type="date" id="dob" name="dob" required />
<br /><br />
<label for="grade">Grade:</label>
<input type="number" id="grade" name="grade" required />
<br /><br />
<input type="submit" value="Save Profile" />
</form>
<p><a href="loginsuccess.html">Back to Log In Success</a></p>
</div>
<script src="script.js"></script>
</body>
</html>
out of function part of website