-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
50 lines (50 loc) · 2.61 KB
/
index.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
<!DOCTYPE html>
<html>
<head>
<meta charset='UTF-8'>
<title>스터디 과제-1</title>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/css/bootstrap.min.css" integrity="sha384-MCw98/SFnGE8fJT3GXwEOngsV7Zt27NXFoaoApmYm81iuXoPkFOJwJ8ERdknLPMO" crossorigin="anonymous">
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/js/bootstrap.min.js" integrity="sha384-ChfqqxuZUCnJSK3+MXmPNIyE6ZbWh2IMqE241rYiqJxyMiZ6OW/JmZQ5stwEULTy" crossorigin="anonymous"></script>
<script src="https://code.jquery.com/jquery-3.3.1.slim.min.js" integrity="sha384-q8i/X+965DzO0rT7abK41JStQIAqVgRVzpbzo5smXKp4YfRvH+8abtTE1Pi6jizo" crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.3/umd/popper.min.js" integrity="sha384-ZMP7rVo3mIykV+2+9J3UJ46jBk0WLaUAdn689aCwoqbBJiSnjAK/l8WvCWPIPm49" crossorigin="anonymous"></script>
<style>
table{ margin: 10px; width:50%; border-radius: 2px;}
</style>
</head>
<body>
<form>
<table class="table-primary" border="1" >
<thead class="thead-dark"><th colspan="2"><h3>KWEB회원가입<span class="badge badge-secondary">New</span></h3></th></thead>
<tfoot><tr><td colspan="2"><button type="button" class="btn btn-success">제출</button></td></tr></tfoot>
<tbody><tr><td>이름</td><td><input type="text"></td></tr>
<tr><td>아이디</td><td><input type="text"></td></tr>
<tr><td>비밀번호</td><td><input type="password" class="form-control-sm" id="exampleInputPassword1" placeholder="Password"></td></tr>
<tr><td>비번확인</td><td><input type="password" class="form-control-sm" id="exampleInputPassword1" placeholder="Password Check"></td></tr>
<tr><td>이메일</td><td><input type="email" placeholder="[email protected]"></td></tr>
<tr><td>회원자격</td>
<td> <select class="form-control-sm" id="exampleFormControlSelect1">
<option value="1" selected="">준회원</option>
<option value="2">정회원</option>
<option value="3">스터디장</option>
<option value="4">회장</option></select>
</td>
</tr>
<tr><td>성별</td>
<td><input type="radio" name="sex" value="1">남성
<input type="radio" name="sex" value="2">여성
</td>
</tr>
<tr><td>취미</td><td>
<input type="checkbox" value="1">스포츠<br>
<input type="checkbox" value="2">음악감상<br>
<input type="checkbox" value="3">프로그래밍<br>
<input type="checkbox" value="4">기타<br>
<input type="text"></td></tr>
<tr><td>하고싶은말</td>
<td><textarea cols="20" rows="2"></textarea></td>
</tr>
</tbody>
</table>
</form>
</body>
</html>