This repository has been archived by the owner on Dec 21, 2024. It is now read-only.
forked from Sookmyung-Software-Hackathon/team15
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathperson.html
71 lines (67 loc) · 2.32 KB
/
person.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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>회원가입</title>
<link rel="stylesheet" href="http://code.jquery.com/ui/1.12.1/themes/base/jquery-ui.css">
<script src="https://code.jquery.com/jquery-1.12.4.js"></script>
<script src="https://code.jquery.com/ui/1.12.1/jquery-ui.js"></script>
<script>
$(function () {
$("#datepicker").datepicker();
});
</script>
<body style="text-align:center;">
<style>
h1{
font-size: 60px;
color: black;
text-transform: uppercase;
font-weight: 700;
text-align: center;
margin-bottom: 60px;
}
body {
padding:1.5em;
background: black;
font-family: 'Roboto', sans-serif;
background-image: linear-gradient(to right, #ffecd2 0%, #fcb69f 100%);
}
section{
margin: 30px;
}
</style>
</head>
<body>
<section>
<h1>회원가입</h1>
</section>
<section>
<form name="login" action="main.html" method="post">
아이디(5자리 이상)<br>
<input type="text" name="id" placeholder="아이디를 입력하세요"><br>
비밀번호(5자리 이상)<br>
<input type="password" name="pwd" value=""><br>
이름<br>
<input type="text" name="name" value=""><br>
<label for="datepicker">출생년도</label><br>
<input id="datepicker" type="date" name="birthday"><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="m" id="woman"><br><br>
휴대전화<br>
<input type="text" name="user_phone" placeholder="010-****-****"><br><br>
관심사<br>
맛집 탐방<input type="checkbox" name="check" value="hobby1">
뮤지컬<input type="checkbox" name="check" value="hobby2">
스포츠<input type="checkbox" name="check" value="hobby3">
힐링 여행<input type="checkbox" name="check" value="hobby4">
<br><br>
<input type="submit" name="" value="제출">
</form>
</section>
</body>
</html>