forked from DarrylMK/MarketPlace-UI
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsignup.html
177 lines (162 loc) · 7.74 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
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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
<html>
<head>
<meta charset="UTF-8">
<title>Sign-Up Form</title>
<link rel="stylesheet" href="style1.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.2.0/css/all.min.css">
<link href="https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100;0,200;0,400;1,200&display=swap"
rel="stylesheet">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
</head>
<body>
<a href="index.html"
style="position: relative; top: -10px; left: 20px; background-color: #fff; border-radius: 50%;">
<svg xmlns="http://www.w3.org/2000/svg" width="50" height="50" fill="000" class="bi bi-arrow-left-circle"
viewBox="0 0 16 16">
<path fill-rule="evenodd"
d="M1 8a7 7 0 1 0 14 0A7 7 0 0 0 1 8zm15 0A8 8 0 1 1 0 8a8 8 0 0 1 16 0zm-4.5-.5a.5.5 0 0 1 0 1H5.707l2.147 2.146a.5.5 0 0 1-.708.708l-3-3a.5.5 0 0 1 0-.708l3-3a.5.5 0 1 1 .708.708L5.707 7.5H11.5z" />
</svg>
</a>
<div id="signup" class="container close">
<div class="title">Sign-Up!</div>
<form action="#">
<div class="user-details">
<div class="input-box">
<span class="details">Full Name</span>
<input type="text" class="name" placeholder="Enter your name" required>
</div>
<div class="input-box">
<span class="details">Username</span>
<input type="text" class="username" placeholder="Enter your username" required>
</div>
<div class="input-box">
<span class="details">Email</span>
<input type="text" class="email" placeholder="Enter your email" required>
</div>
<div class="input-box">
<span class="details">Phone Number</span>
<input type="text" class="no" placeholder="Enter your phone number" required>
</div>
<div class="input-box" style="position: relative">
<span class="details">Password</span>
<input class="password" type="password" id="createPw" placeholder="Enter your password" required>
</div>
<div class="input-box" style="position: relative">
<span class="details">Confirm Password</span>
<input class="confirmPassword" type="password" id="confirmPw" placeholder="Re-enter your password"
required>
<i class="fa fa-eye-slash show-password"
style="position: absolute; top: 50%; left: 100%; transform: translate(-150%,20%)"></i>
<small id="errorPw" style="position: absolute; display: flex"></small>
</div>
</div>
<div class="gender-details">
<input type="radio">
<input type="radio" name="gender" id="dot-1">
<input type="radio" name="gender" id="dot-2">
<input type="radio" name="gender" id="dot-3" checked>
<span class="gender-title">Gender</span>
<div class="category">
<label for="dot-1">
<span class="dot one"></span>
<span class="gender">Male</span>
</label>
<label for="dot-2">
<span class="dot two"></span>
<span class="gender">Female</span>
</label>
<label for="dot-3">
<span class="dot three"></span>
<span class="gender">Prefer not to say</span>
</label>
</div>
</div>
<div class="button">
<input type="submit" value="Register">
</div>
</form>
<button onclick="changeContainer()">Sign In</button>
</div>
<div id="signin" class="container">
<div class="title">Sign-In!</div>
<form action="#">
<div class="user-details">
<div class="input-box">
<span class="details">Username</span>
<input type="text" placeholder="Enter your username" required>
</div>
<div class="input-box" style="position: relative">
<span class="details">Password</span>
<input type="password" id="pW" placeholder="Enter your password" required>
<i class="fa fa-eye-slash show-pass" style="position: absolute; top: 44.5%; left: 90%"></i>
<small>Forgotten your password?<a href="forgotpw.html" style="margin-left: 5px">Click here</a></small>
</div>
</div>
<div class="button">
<input type="submit" value="Log In">
</div>
</form>
<button onclick="changeContainer()">Sign Up</button>
</div>
<script>
const showPassword = document.querySelector(".show-password"),
showPass = document.querySelector(".show-pass"),
createPw = document.querySelector("#createPw"),
confirmPw = document.querySelector("#confirmPw"),
pW = document.querySelector("#pW"),
name = document.querySelector(".name"),
userName = document.querySelector(".username"),
eMail = document.querySelector(".email"),
number = document.querySelector(".no"),
message = document.querySelector("#errorPw");
/* Password Validation */
document.querySelector('.button').onclick = function () {
message.textContent = "";
if ((name.value != "") && (userName.value != "") && (eMail.value != "") && (number.value != "")
&& (createPw.value != "") && (confirmPw.value != "")) {
if (createPw.value.length != 0) {
if (createPw.value == confirmPw.value) {
alert("Your account has successfully been created!")
}
else {
message.textContent = "Passwords don't match";
message.style.color = "ff4d4d";
}
}
}
}
/* Reveals and hides password by clicking on the eye icon */
showPass.addEventListener("click", () => {
if (pW.type === "password") {
pW.type = "text";
showPass.classList.replace("fa-eye-slash", "fa-eye");
}
else {
pW.type = "password";
showPass.classList.replace("fa-eye", "fa-eye-slash");
}
});
showPassword.addEventListener("click", () => {
if ((createPw.type === "password") && (confirmPw.type === "password")) {
createPw.type = "text";
confirmPw.type = "text";
showPassword.classList.replace("fa-eye-slash", "fa-eye");
}
else {
createPw.type = "password";
confirmPw.type = "password";
showPassword.classList.replace("fa-eye", "fa-eye-slash");
}
});
/* Swaps both containers when Sign Up or Log In button is clicked */
const signup = document.getElementById('signup')
const signin = document.getElementById('signin')
const changeContainer = () => {
signup.classList.toggle('close')
signin.classList.toggle('close')
}
</script>
</body>
</html>