-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathprofile.html
More file actions
55 lines (55 loc) · 2.06 KB
/
Copy pathprofile.html
File metadata and controls
55 lines (55 loc) · 2.06 KB
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Profile</title>
<link rel="stylesheet" href="auth.css">
</head>
<body>
<nav id="profile-nav">
<header><a href="index.html">ALLINONE</a></header>
</nav>
<section id="profile-section">
<header>
<h1 id="profile-owner"></h1>
</header>
<div id="edit-profile">
<form class="">
<div class="card-inputs">
<label for="fname">First Name</label>
<input type="text" name="fname" id="fname" required />
</div>
<div class="card-inputs">
<label for="lname">Last Name</label>
<input type="text" name="lname" id="lname" required />
</div>
<button type="submit" class="btn profile-btns" id="save-info">Save Info</button>
<p id="error-message"></p>
</form>
</div>
<header>
<h1>Edit Password</h1>
</header>
<div id="edit-password">
<form class="">
<div class="card-inputs">
<label for="old-password">Current Password</label>
<input type="password" id="old-password" required />
</div>
<div class="card-inputs">
<label for="new-password">New Password</label>
<input type="password" id="new-password" required />
</div>
<div class="card-inputs">
<label for="confirm-password">Confirm Password</label>
<input type="password" id="confirm-password" required />
</div>
<button type="submit" class="btn profile-btns" id="save-password">Save Password</button>
</form>
<button class="btn profile-btns" id="logout">Logout</button>
</div>
</section>
<script src="script.js"></script>
</body>
</html>