-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathjoin.html
33 lines (33 loc) · 1.2 KB
/
join.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>회원가입</title>
<link href="./css/join.css" rel="stylesheet" />
</head>
<body>
<div class="join_box">
<img src="./media/back.png" id="back" onclick="goBack()" /><br />
<img src="./media/logo.png" id="logo" />
<form class="input">
<input type="text" placeholder="nickname" id="name" />
<input type="text" placeholder="ID" id="id" />
<input type="email" placeholder="e-mail" id="mail" />
<input type="password" placeholder="password" id="pass1" />
<input
type="password"
placeholder="re-enter password "
id="pass2"
/>
<input type="submit" value="회원가입" id="join" />
</form>
</div>
<script>
function goBack() {
window.location.href = "main.html";
// 메인 페이지로 이동 {% 'main' %}
}
</script>
</body>
</html>