forked from yunaeun/KIWE_html
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathjoin.html
49 lines (46 loc) · 1.3 KB
/
join.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
<!DOCTYPE html>
<html>
<head>
<title>kiwe</title>
<style>
h5{
margin:0;
}
</style>
</head>
<body>
<center>
<br>
<br>
<br>
<br>
<h1>회원가입</h1>
<section>
<form name="join" action="{% url 'join' %}" method="post">
{% csrf_token %}
이메일<br>
<input type="email" name="id">
</input>
<br>
비밀번호<br>
<input type="password" name="password"><br>
비밀번호 확인<br>
<input type="password" name="passwordcheck">
<br><br>
생년월일<br>
<input type="date" name="birth">
<br><br>
성별<br>
<label for="man">남자</label>
<input type="radio" name="gender" value="m" id="man">
<label for="woman">여자</label>
<input type="radio" name="gender" value="w" id="woman"> <br><br>
<br>
사용자 정보 제공 동의
<input type="checkbox" name="agree" value="y" checked><br><br>
<input type="submit" name="submit" value="회원가입">
</form>
</section>
<center>
</body>
</html>