-
Notifications
You must be signed in to change notification settings - Fork 7
/
signup_view.html
48 lines (48 loc) · 1.94 KB
/
signup_view.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
<!DOCTYPE html>
{% load static %}
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>회원가입</title>
<link rel="stylesheet" href="{% static 'css/signup.css' %}">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Prentendard">
<script src="https://code.jquery.com/jquery-3.6.0.min.js"></script>
<script src="{% static 'js/signup.js' %}"></script>
</head>
<body>
<div class="signup_body">
<div class="signup_logo">
<img src="{% static 'image/logo 1.png' %}">
</div>
<div class="signup_text">
<button type="button" style="cursor:pointer;" onclick="location.href='login'"><img src="{% static 'image/arrow.png' %}"></button>
<h1>회원가입</h1>
</div>
<div class="signup_name">
<h2>닉네임</h2>
<input type="text" id="name" name="name">
</div>
<div class="signup_email">
<h3>이메일</h3>
<input type="email" id="email" name="email" placeholder="E-mail">
<button type="button" style="cursor:pointer;" onclick="onsubmitEmail();">이메일 인증</button>
</div>
<div class="signup_email_num">
<h4>이메일 인증번호</h4>
<input type="text" id="validation_code" name="validation_code">
</div>
<div class="signup_password">
<h5>비밀번호</h5>
<input type="password" id="password" name="password" placeholder="Password">
</div>
<div class="signup_password_ck">
<h6>비밀번호 확인</h6>
<input type="password" id="confirm-password" name="confirm-password" placeholder="Password">
</div>
<div class="signup_go">
<button type="button" style="cursor:pointer;" onclick="onsubmitSignup();">회원가입하기</button>
</div>
</div>
</body>
</html>