forked from Jihunz123/AIA6_FrontEnd
-
Notifications
You must be signed in to change notification settings - Fork 0
/
signup.html
47 lines (44 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
<!DOCTYPE html>
<html lang="ko">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="/static/css/signup.css">
<title>Coovie</title>
</head>
<body>
<header></header>
<div class="main">
<div class="banner">
<p>회원 가입</p>
</div>
<form class="form">
<div class="inputs">
<label for="user_name">아이디</label>
<input type="user_name" id="user_name" name="user_name">
</div>
<div class="inputs">
<label for="email">이메일</label>
<input type="email" id="email" name="email">
</div>
<div class="inputs">
<label for="password">비밀번호</label>
<input type="password" id="password" name="password">
</div>
<div class="inputs">
<label for="re_password">비밀번호 확인</label>
<input type="password" id="re_password" name="re_password">
</div>
<div class="button_box">
<button type="button" onclick="handleSignupButton()">회원가입</button>
<a href="/signin.html">로그인 페이지로</a>
</div>
</form>
</div>
<footer></footer>
<script src="/static/scripts/api.js"></script>
<script defer src="/static/scripts/signup.js"></script>
<script defer src="/static/scripts/loader.js"></script>
</body>
</html>