-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsignup_2.html
70 lines (70 loc) · 3 KB
/
signup_2.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>
<head>
<meta charset="utf-8">
<title>dokgang_matching</title>
</head>
<body>
<div style = "text-align:center">
<h1>LOGO</h1>
</div>
<div>
<h2>Sign Up</h2>
</div>
<div>
<hr>
</div>
<div style = "overflow-y:scroll;margin-right:50px;">
<table width="80%" style="margin:auto;">
<tr><td colspan="2"><h2>기본 정보 입력</h2></td></tr>
<tr>
<td>아이디 *</td><td><input type="text"></input> @snu.ac.kr</td>
</tr>
<tr>
<td>비밀번호 *</td><td><input type="text"></input></td>
</tr>
<tr>
<td>비밀번호 확인 *</td><td><input type="text"></input></td>
</tr>
<tr><td colspan="2"><hr></td></tr>
<tr><td colspan="2"><h2>프로필 입력</h2></td></tr>
<tr>
<td>학번 *</td><td><input type="text"></input></td>
</tr>
<tr>
<td>성별 *</td><td>
<select name="gender">
<option value='' selected>-- 선택 --</option>
<option value="남성">남성</option>
<option value="여성">여성</option>
</select>
</td>
</tr>
<tr>
<td>단과대 *</td><td>
<select name="college">
<option value='' selected>-- 선택 --</option>
<option value="간호대학">간호대학</option>
<option value="경영대학">경영대학</option>
</select>
</td>
</tr>
<tr>
<td>익명 선호 *</td><td><input type="checkbox"></input></td>
</tr>
</table>
</div>
<div>
<table width="100%">
<tr>
<td width="30%"><div><a href="signup_1.html" style="text-decoration:none;font-size:30px;float:left;margin-left:20px;"><</a></div></td>
<td width="1%"><div style="width:10px;height:10px;border-radius:50px;background:#aaaaaa;"></div></td>
<td width="1%"><div style="width:10px;height:10px;border-radius:50px;background:#3399ff;"></div></td>
<td width="1%"><div style="width:10px;height:10px;border-radius:50px;background:#aaaaaa;"></div></td>
<td width="1%"><div style="width:10px;height:10px;border-radius:50px;background:#aaaaaa;"></div></td>
<td width="30%"><div><a href="signup_3.html" style="text-decoration:none;font-size:30px;float:right;margin-right:20px;">></a></div></td>
</tr>
</table>
</div>
</body>
</html>