-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathforgot.html
65 lines (55 loc) · 2.26 KB
/
forgot.html
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
56
57
58
59
60
61
62
63
64
65
<!DOCTYPE html>
<html lang="en">
<head>
<title>Edumetrics</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div class="topnav">
<div class="logo-container">
<img src="images/logo.png" class="logo" alt="Logo">
<span class="site-name">Edumetrics</span>
</div>
<div class="dropdown">
<a href="#" class="burger-icon" >☰</a>
<div class="dropdown-content">
<a href="#"><img src="icons/user.png">Student Profile</a>
<a href="#"><img src="icons/user.png">Courses</a>
<a href="#"><img src="icons/test.png">Grade Info</a>
<a href="#"><img src="icons/scholarship.png">Charges Due</a>
<a href="#"><img src="icons/settings.png">Settings</a>
<a href="#"><img src="icons/exit.png ">Log Out</a>
</div>
</div>
</div>
<div class="container_forgot">
<form class="forgot-password-form" method="POST" action="/forgot_password">
<h1>Forgot Password</h1>
<p>Enter your email address to reset your password.</p>
<label for="email">Email:</label>
<input type="email" id="email" name="email" required>
<input type="submit" value="Reset Password">
</form>
</div>
<div class="footer">
<div></div>
<div class="uni_info">
<h4>THE UNIVERSITY OF TEXAS AT ARLINGTON</h4>
<p>701 S Nedderman Dr,</p>
<p>Arlington, TX 76019</p>
<p>817-090-xxxx</p>
<p>Privacy Statement | Contact</p>
<p>@2023 University of Texas at Arlington</p>
</div>
<div class="contact-us">
<img src="images/footer/facebook-app-symbol.png" alt="facebook">
<img src="images/footer/email.png" alt="mail">
<img src="images/footer/linkedin.png" alt="linkedin">
<img src="images/footer/twitter (1).png" alt="twitter">
<img src="images/footer/instagram.png" alt="instagram">
</div>
</div>
</body>
</html>