-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathmakeUser.php
More file actions
107 lines (99 loc) · 2.23 KB
/
makeUser.php
File metadata and controls
107 lines (99 loc) · 2.23 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<title>회원가입</title>
<style>
body{
background-image:url("bg.png")
}
.myform{
margin:30px auto;
width:80%;
padding:14px;
}
#stylized{
background:#ebf4fb;
}
#stylized h1{
font-size:16px;
font-weight:bold;
margin-bottom:8px;
font-family:nanumgothic,dotum;
}
#stylized p{
font-size:11px;
color:#666666;
margin-bottom:solid 1px #b7ddf2;
padding-bottom:10px;
font-family:dotum;
}
#stylized label{
display:block;
font-weight:bold;
text-align:right;
float: left;
font-family:tahoma;
}
#stylized .small{
color:#666666;
display:block;
font-size:11px;
font-weight:normal;
text-align:right;
width:140px;
font-family:dotum;
letter-spacing:-1px;
#stylized input{
float:left;
font-size:12px;
padding:4px 2px;
border:solid 1px #aacfe4;
width:200px;
margin:2px 0 20px 10px;
}
#stylized button{
clear:both;
margin-left:150px;
width:125px;
height:31px;
text-align:center;
line-height:31px;
background-color:#000;
color:#FFFFFF;
font-size:11px;
font-weight:bold;
font-family:tahoma;
}
</style>
</head>
<body>
<div id="stylized" class="myform">
<h1>회원가입</h1>
<form class="well well-lg "action="register.php" data-ajax="false" method="post">
<div class="form-group">
<label><span class="name">이름</span></label>
<input class="form-control" type="text" id="Name" name="name"required><br>
<label><span class="email">Email</span></label>
<input type="text" class="form-control" id="email" name="email" required><br>
<label>
<span class="pw">PW</span>
</label>
<input type="password" class="form-control" id="Pw" name="password" required><br>
<label>
<span class="password">PW 확인</span>
</label>
<input class="form-control" type="password" id="PwCheck" required><br>
<label>
<span class="phone">Phone Number</span>
</label>
<input class="form-control" type="text" id="Phone" name="phone_no" required><br>
</div>
<br><br>
<button class="btn btn-default" type="submit" >확인</button>
<button class="btn btn-default" type="reset">취소</button>
</form>
</div>
</body>
</html>