-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsignup.html
More file actions
95 lines (92 loc) · 4.09 KB
/
signup.html
File metadata and controls
95 lines (92 loc) · 4.09 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>QquickQqueue</title>
<link rel="stylesheet" href="signup.css">
<script src="signup.js"></script>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-EVSTQN3/azprG1Anm3QDgpJLIm9Nao0Yz1ztcQTwFspd3yD65VohhpuuCOmLASjC" crossorigin="anonymous">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/js/bootstrap.bundle.min.js"
integrity="sha384-MrcW6ZMFYlzcLA8Nl+NtUVF0sA7MsXsP1UyJoMp4YLEuNSfAP+JcXn/tWtIaxVXM"
crossorigin="anonymous"></script>
</head>
<body>
<div class="mytitle">
<button type="button" class="logo" onclick="location.href='main.html'">
QQ
</button>
</div>
<div>
<div class="signupBox">
<h3 class="boxHeader">
SignUp to QQ
</h3>
<div>
<form>
<div>
<label for="email" class="emailLabel">EMAIL</label>
<input type="email" class="emailInput" required>
</div>
<div>
<label for="password" class="passwordLabel">PASSWORD</label>
<input type="password" class="passwordInput" required>
</div>
<div>
<label for="checkPassword" class="checkPasswordLabel">PASSWORD CHECK</label>
<input type="password" class="checkPasswordInput" required>
</div>
<div>
<label for="name" class="nameLabel">NAME</label>
<input type="text" class="nameInput" required>
</div>
<div>
<label for="gender" class="genderLabel">GENDER</label>
<select type="text" class="genderInput" required>
<option value="" disabled selected>----SELECT----</option>
<option value="MALE">MALE</option>
<option value="FEMALE">FEMALE</option>
</select>
</div>
<div class="birthBigDiv">
<label for="birth" class="birthLabel">BIRTH</label>
<div class="birthDiv">
<select id="birthYear" required>
<option value="" disabled selected>YEAR</option>
</select>
<select id="birthMonth" required>
<option value="" disabled selected>MONTH</option>
</select>
<select id="birthDay" required>
<option value="" disabled selected>DAY</option>
</select>
</div>
</div>
<div class="phoneNumberBigDiv">
<label for="phoneNumber" class="phoneNumberLabel">PHONE NUMBER</label>
<div class="phoneNumberDiv">
<select type="text" id="firstNum" required>
<option value="010" selected>010</option>
<option value="011">011</option>
<option value="016">016</option>
<option value="017">017</option>
<option value="018">018</option>
<option value="019">019</option>
</select>
<input type="text" id="middleNum" maxlength="4"
oninput="this.value = this.value.replace(/[^0-9.]/g, '').replace(/(\..*)\./g, '$1');" required>
<input type="text" id="lastNum" maxlength="4"
oninput="this.value = this.value.replace(/[^0-9.]/g, '').replace(/(\..*)\./g, '$1');" required>
</div>
</div>
<div>
<button type="submit" class="signupButton">회원가입</button>
</div>
</form>
</div>
</div>
</div>
</body>
</html>