-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsignup.html
39 lines (33 loc) · 1.55 KB
/
signup.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
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="icon" href="program1.ico">
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Sign Up</title>
</head>
<body>
<link rel="stylesheet" href="style_login.css">
<h1>Hello! Log In Part!</h1>
<img class="img" src="img/background.png" alt="background">
<div>
<script src = "login.js"></script>
<form id="signup-form" action="" autocomplete="off">
<ul class="signup-main">
<fieldset style="width: 500px; height:400px;border: 5;">
<legend>Sign Up</legend>
<div class="signup">
<img id="img" src="img/Signpu.png" width="40%" height="40%" alt="signup">
</div>
<label for="new-user-id">새 아이디 : <input type="text" id="new-user-id"></label><br>
<label for="new-password">새 비밀번호 : <input type="password" id="new-password"></label><br>
<label for="new-password">비밀번호를 다시 입력하세요 : <input type="password" id="new-password-re"></label> <br>
<!-- 버튼 라벨 수정 및 onclick 이벤트 핸들러 수정 -->
<button id="sign-up-button" type="button" onclick="signUpAndRedirect()">Sign Up</button>
</fieldset>
</ul>
</form>
</div>
<script src="script_login.js"></script>
</body>
</html>