-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcreate_id.php
28 lines (28 loc) · 930 Bytes
/
create_id.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
<DOCTYPE HTML5>
<html>
<head>
<link rel="stylesheet" type="text/css" href="css/login-ui.css">
</head>
<body width="100%" height="100%">
<form action="create_ok.php" method="post" class="loginForm">
<h2>Sign up</h2>
<div class="idForm">
<input type="text" name='user_id' class="id" placeholder="ID">
</div>
<div class="passForm">
<input type="password" name='user_pw1' class="pw" placeholder="PW">
</div>
<div class="passForm">
<input type="password" name='user_pw2' class="pw" placeholder="Check PW">
</div>
<button type="submit" class="btn" onclick="button()">
LOG IN
</button>
<script>
let button = () => {
alert('Sign up Button !')
}
</script>
</form>
</body>
</html>