-
Notifications
You must be signed in to change notification settings - Fork 2
/
signup.html
43 lines (42 loc) · 1.8 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
<!DOCTYPE html>
<html lang="ko">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>signup</title>
<link rel="stylesheet" href="signup.css">
</head>
<body>
<div class="box">
<div class="login-wrapper">
<form method="post" action="">
<fieldset>
<table class="sign">
<img src="img/Logo.png" class="Logo" id="signupForm">
<tr>
<th class="first">아이디<label class="userid"></label></th>
<td><input type="text" id="userid" class="textForm" required autofocus></td>
</tr>
<tr>
<th><label for="password">비밀번호</label></th>
<td><input type="password" id="password" class="textForm" placeholder="8자 이상"></td>
</tr>
<tr>
<th><label for="username">이름</label></th>
<td><input type="text" id="username" class="textForm"></td>
</tr>
<tr>
<th><label for="useremail">이메일</label></th>
<td><input type="email" id="useremail" class="textForm"></td>
</tr>
</table>
</fieldset>
<div class="btn_area">
<a href="login.html" class="cancel-button">취소</a>
<a href="login.html" class="signup-button" onclick="alert('회원가입 되었습니다!')">회원가입</a>
</div>
</form>
</div>
</div>
</body>
</html>