-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathforgotpass.html
More file actions
41 lines (36 loc) · 1.52 KB
/
forgotpass.html
File metadata and controls
41 lines (36 loc) · 1.52 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<title>Pawmart – Reset Password</title>
<link rel="stylesheet" href="styles.css" />
</head>
<body class="background">
<!-- Banner -->
<header class="banner">
<img class="logo" src="images/pawmart.png" alt="Pawmart Logo" />
<h1 class="banner-title">Welcome to Pawmart!</h1>
</header>
<nav>
<div>
<a href="Homepage.html" id="nav-btn-homepage" class="nav-btn">Home</a>
<a href="profile.html" id="nav-btn-customer" class="nav-btn" style="display:none;">Profile</a>
<a href="admin-users.html" id="nav-btn-admin" class="nav-btn" style="display:none;">Admin Users</a>
<a href="products.html" id="nav-btn-products" class="nav-btn">Products</a>
<a href="sign-in.html" id="nav-btn-signin" class="nav-btn">Sign in</a>
<a href="sign-up.html" id="nav-btn-signup" class="nav-btn">Sign Up</a>
<button id="nav-btn-logout" class="nav-btn" style="display:none;">Log Out</button>
</div>
</nav>
<body class="background">
<h2 class="intro">Forgot Password? No problem! Please input the email associated with your account and security question to continue</h2>
</body>
<div class="form">
<h2>Change Password</h2>
<form>
<input type="email" placeholder="Email">
<input type="security" placeholder="Security Question">
<button type="submit">Change Password</button>
</form>
</div>
</html>