-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsignup.php
63 lines (60 loc) · 1.72 KB
/
signup.php
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>회원가입</title>
<style media="screen">
.layout-login .wrap {
max-width: 360px;
margin: 0 auto;
text-align: center;
}
input {
width: 100%;
font-size: 14px;
padding: 5px;
box-sizing: border-box;
}
button {
border: 1px solid #ddd;
width: 100%;
padding: 5px;
font-size: 14px;
margin-top: 10px;
}
a {
display: block;
margin-top: 10px;
font-size: 12px;
}
</style>
</head>
<body class="layout-login page-login">
<div class="wrap">
<h1>회원가입</h1>
<form class="" action="signup-process.php" method="post">
<div>
<input
type="text"
placeholder="아이디"
name="member_id"
required
>
</div>
<div>
<input
type="password"
placeholder="비밀번호"
name="member_password"
required
>
</div>
<div>
<button type="submit" name="button">전송</button>
</div>
</form>
<a href="/">메인으로</a>
<a href="/login.php">로그인</a>
</div>
</body>
</html>