-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsinup.html
70 lines (60 loc) · 2.57 KB
/
sinup.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
66
67
68
69
70
<!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_sinup">
<form class="signup-form" method="POST" action="/signup">
<h1>Sign Up</h1>
<label for="username">Username:</label>
<input type="text" id="username" name="username" required>
<label for="email">Email:</label>
<input type="email" id="email" name="email" required>
<label for="password">Password:</label>
<input type="password" id="password" name="password" required>
<label for="confirm-password">Confirm Password:</label>
<input type="password" id="confirm-password" name="confirm-password" required>
<input type="submit" value="Sign Up">
</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>