forked from kc2585/hanium
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSignup.php
More file actions
48 lines (46 loc) ยท 1.34 KB
/
Signup.php
File metadata and controls
48 lines (46 loc) ยท 1.34 KB
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
<?php
include "/db.php";
?>
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>ํ์๊ฐ์
ํผ</title>
</head>
<body>
<form method="post" action="member_ok.php">
<h1>ํ์๊ฐ์
ํผ</h1>
<fieldset>
<legend>์
๋ ฅ์ฌํญ</legend>
<table>
<tr>
<td>์์ด๋</td>
<td><input type="text" size="35" name="userid" placeholder="์์ด๋"></td>
</tr>
<tr>
<td>๋น๋ฐ๋ฒํธ</td>
<td><input type="password" size="35" name="userpw" placeholder="๋น๋ฐ๋ฒํธ"></td>
</tr>
<tr>
<td>์ด๋ฆ</td>
<td><input type="text" size="35" name="name" placeholder="์ด๋ฆ"></td>
</tr>
<tr>
<td>์ฃผ์</td>
<td><input type="text" size="35" name="adress" placeholder="์ฃผ์"></td>
</tr>
<tr>
<td>์ฑ๋ณ</td>
<td>๋จ<input type="radio" name="sex" value="๋จ"> ์ฌ<input type="radio" name="sex" value="์ฌ"></td>
</tr>
<tr>
<td>์ด๋ฉ์ผ</td>
<td><input type="text" name="email">@<select name="emadress"><option value="naver.com">naver.com</option><option value="nate.com">nate.com</option>
<option value="hanmail.com">hanmail.com</option></select></td>
</tr>
</table>
<input type="submit" value="๊ฐ์
ํ๊ธฐ" /><input type="reset" value="๋ค์์ฐ๊ธฐ" />
</fieldset>
</form>
</body>
</html>