-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmemb6.html
56 lines (56 loc) · 1.89 KB
/
memb6.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
<!doctype html> <!-- memb1.html -->
<html>
<head>
<meta charset="utf-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1"/>
<style>
* {padding:0; margin:0;}
#section0 {width:400px; height:250px; border:solid 1px lightgray; margin:10px; padding:10px; border-radius:1em; box-shadow:9px 6px 6px gray;}
ul {list-style:none;}
ul.level_1 > li {display:inline-block; line-height:1.5em;}
.level_1 span {display:inline-block; width:100px;}
.level_1 input {width:100px;}
.level_1 input[type="checkbox"] {width:20px;}
.level_1 button {margin-left:5px; width:70px; height:25px;}
</style>
<title>회원가입 실습</title>
</head>
<body>
<section id="section0">
<h4>회원 가입</h4>
<form action="https://jsptogo.herokuapp.com/jspsrc/memb5.jsp" method="post">
<ul class="level_1">
<li><span>아이디</span></li>
<li><input type="text" name="namex"></li>
<li><button>중복확인</button></li>
</ul>
<ul class="level_1">
<li><span>비밀번호</span></li>
<li><input type="password" name="passx"></li>
</ul>
<ul class="level_1">
<li><span>비밀번호확인</span></li>
<li><input type="password" name="passx"></li>
</ul>
<ul class="level_1">
<li><span>이름</span></li>
<li><input type="text" name="#"></li>
</ul>
<ul class="level_1">
<li><span>취미</span></li>
<li><input type="checkbox" name="hobby" value="fishing">낚시</li>
<li><input type="checkbox" name="hobby" value="singing">노래</li>
<li><input type="checkbox" name="hobby" value="reading">독서</li>
</ul>
<ul class="level_1">
<li><span>가입인사</span></li>
<li><textarea id="#" name="#" rows="4" cols="30"></textarea></li>
</ul>
<ul class="level_1">
<li><button type="submit">회원가입</button></li>
<li><button type="reset">취소</button></li>
</ul>
</form>
</section>
</body>
</html>