-
Notifications
You must be signed in to change notification settings - Fork 0
/
signup.html
58 lines (53 loc) · 1.41 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
48
49
50
51
52
53
54
55
56
57
58
<!DOCTYPE html>
<html lang = "en">
<head>
<title>Sign Up | CSSA</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width; initial-scale=1.0">
<link rel="stylesheet" type="text/css" media="screen" href="css/style.css">
<link rel="stylesheet" type="text/css" media="screen" href="css/layout.css">
<script src="js/signup.js"></script>
</head>
<body id="signup">
<!-- Header -->
<div id="header_container">
<div class="header">
</div>
</div>
<!-- Content -->
<div id="signup_container">
<div class="signup">
<form name="signup_form" onsubmit="signup()" method="post">
<table class= "InForm" board=1>
<tr>
<td>用户名 Username:</td>
<td><input type="text" name="username"></td>
</tr>
<tr>
<td>邮箱 Email:</td>
<td><input type="text" name="email"></td>
</tr>
<tr>
<td>密码 Password:</td>
<td><input type="password" name="password"></td>
</tr>
</table>
<input type="submit" value="登录">
</form>
</div>
</div>
<!-- Footer -->
<div id="footer_container">
<div class="foot1">
欢迎大家来到 Stevens Institute of Technology! 享受美好的学习生活吧!
</div>
<div class="foot2">
Welcome to Stevens! Enjoy your life here!
</div>
<div class="foot3">
© 2018 STEVENS | CSSA. ALL RIGHT RESEVERD.
<a href="privacypolicy.html">Privacy Policy</a>
</div>
</div>
</body>
</html>