-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsignup_page.html
More file actions
42 lines (39 loc) · 1.59 KB
/
Copy pathsignup_page.html
File metadata and controls
42 lines (39 loc) · 1.59 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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>signup for Tale Tower</title>
<meta name="signup" content="Sign up page for Tale Tower" />
<link rel="stylesheet" href="css/style.css">
<link rel="stylesheet" href="css/sign.css">
</head>
<body>
<table width="100%" height="100%">
<tr>
<td align="center">
<br><br>
<h1><span style="margin-left:100px;">Welcome to Tale Tower Library</span></h1>
<form id="signup" class="container">
<p class="sign">Sign up</p><br>
<div class="label-group">
<input type="text" required minlength="4" placeholder="Username" id="username"><br><br>
</div>
<input type="password" required minlength="4" placeholder="Password" id="password"><br><br>
<input type="password" minlength="4" required placeholder="Confirm Password" id="confirmPass"><br><br>
<input type="email" name="email" required placeholder="Email" id="email"><br><br>
<div>
<input type="radio" id="as_user" name="usertype" value="false">
<label for="as_user" style="color:#BD804A;">As User</label>
<input type="radio" id="as_admin" name="usertype" value="true">
<label for="as_admin" style="color:#BD804A;">As Admin</label><br><br>
</div>
<input type="submit" value="Sign up">
<br>
<h5>already have account?<a href="signin_page.html">sign in</a></h5>
</form>
</td>
</tr>
</table>
<script type="module" src="js/sign.js"></script>
</body>
</html>