forked from peter001019/WebProgrammingProject
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsign_up.html
More file actions
62 lines (55 loc) · 1.36 KB
/
Copy pathsign_up.html
File metadata and controls
62 lines (55 loc) · 1.36 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
<!DOCTYPE html>
<html lang="kor">
<head>
<link rel="stylesheet" href="sign_up.css">
<meta charset="UTF-8">
<title>마이 페이지</title>
</head>
<body class="wrapper">
<header>
<div>
<img src="로고.svg" alt="로고">
</div>
<nav>
<div id="logout">로그아웃</div>
<div id="MyPage"><a href="#">MyPage</a></div>
</nav>
</header>
<div id="content">
<a href="#">
<img src="arrow-left.svg" alt="화살표">
</a>
<div id="logofont">Sign up</div>
<form id="outlogbox" method="" action="">
<div id="inlogbox">
<table>
<tr>
<td id="table_size">I D : </td>
<td><input type="text" name="id"></t>
</tr>
</table>
<hr>
<table>
<tr>
<td id="table_size">PWD : </td>
<td><input type="password" name="passwd"></td>
</tr>
</table>
<hr>
<table>
<tr>
<td id="table_size">PCK : </td>
<td><input type="password" name="passwd_check"></td>
</tr>
</table>
</div>
<input id="submit_signup" type="submit" value="회원 가입">
</form>
</div>
<footer>
<b>Contact</b>
<span class="copyright">한승우 옥선우 정종욱</span>
<span class="email">peter001019@naver.com</span>
</footer>
</body>
</html>