-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsignup.html
47 lines (38 loc) · 1.36 KB
/
signup.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style.css">
<title>Sign Up</title>
</head>
<body>
<div id="assignment-sticker-container"></div>
<nav id="navbar-container"></nav>
<section class="main_title" id="signup">
<h1 class="bigger_title">Sign Up</h1>
<form class="signup_form">
<label for="name">Username:</label>
<input type="text" name="name" id="name" maxlength="20">
<label for="password">Password:</label>
<input type="password" id="password" name="password">
<label for="confirm_password">Confirm password:</label>
<input type="password" id="confirm_password" name="confirm_password">
<label for="portraits">Upload portraits:</label>
<input type="file" id="portraits" name="portraits">
<div class="terms">
<label>
<input type="checkbox" name="agree" checked="checked" id="agree">
I agree
</label>
<a href="#" class="inline_link">Registration Terms</a>
</div>
<input type="submit" value="Submit">
<a href="login.html" aria-label="Log in Page"><ins>Already have an account?
<br>Log in now</ins></a>
</form>
</section>
<div id="footer-container"></div>
<script src="script.js"></script>
</body>
</html>