-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathregistration.js
More file actions
312 lines (286 loc) · 9.09 KB
/
registration.js
File metadata and controls
312 lines (286 loc) · 9.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
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
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
var page = 1;
showTab(page);
var condition1 = false;
var condition2 = false;
var condition3 = false;
var condition4 = false;
var condition5 = false;
var condition6 = false;
var condition7 = false;
var condition8 = false;
var condition9 = false;
var condition10 = false;
var condition11 = false;
var condition12 = false;
var condition13 = false;
function showTab(n) {
if (n == 1) {
document.getElementById("form2").style.display = "none";
document.getElementById("form3").style.display = "none";
document.getElementById("form1").style.display = "block";
} else if (n == 2) {
document.getElementById("form1").style.display = "none";
document.getElementById("form3").style.display = "none";
document.getElementById("form2").style.display = "block";
} else if (n == 3) {
document.getElementById("form1").style.display = "none";
document.getElementById("form2").style.display = "none";
document.getElementById("form3").style.display = "block";
}
}
function next(x) {
page = page + x;
showTab(page);
}
function back(x) {
page = page + x;
showTab(page);
}
function validateGroup() {
var inputGroup = document.getElementById("group").value;
if (inputGroup != "") {
document.getElementById("groupInputGroup").style.borderColor = "green";
condition1 = true;
} else {
document.getElementById("groupInputGroup").style.borderColor = "red";
condition1 = false;
}
}
function validatePass() {
var inputPass = document.getElementById("password").value;
var passREGEX =
/^(?=.*[a-z])(?=.*[A-Z])(?=.*\d)(?=.*[@$!%*?&])[A-Za-z\d@$!%*?&]{8,}$/;
if (inputPass.match(passREGEX)) {
document.getElementById("validationPass").style.display = "none";
document.getElementById("groupInputPass").style.borderColor = "green";
condition2 = true;
} else {
document.getElementById("validationPass").style.display = "block";
document.getElementById("groupInputPass").style.borderColor = "red";
condition2 = false;
}
}
function confirmPass() {
var inputPass = document.getElementById("password").value;
var inputConfirmPass = document.getElementById("confirmPassword").value;
if (inputConfirmPass == "") {
document.getElementById("groupInputConfirm").style.borderColor = "red";
condition3 = false;
} else if (inputConfirmPass == inputPass) {
document.getElementById("confirmationPass").style.display = "none";
document.getElementById("groupInputConfirm").style.borderColor = "green";
condition3 = true;
} else {
document.getElementById("confirmationPass").style.display = "block";
document.getElementById("groupInputConfirm").style.borderColor = "red";
condition3 = false;
}
}
function validateStatus() {
var status1 = document.getElementById("binusian");
var status2 = document.getElementById("nonBinusian");
if (status1.checked == true || status2.checked == true) {
document.getElementById("groupInputStatus").style.borderColor = "green";
condition4 = true;
} else {
document.getElementById("groupInputStatus").style.borderColor = "red";
condition4 = false;
}
}
function validateName() {
var inputName = document.getElementById("name").value;
if (inputName != "") {
document.getElementById("groupInputName").style.borderColor = "green";
condition5 = true;
} else {
document.getElementById("groupInputName").style.borderColor = "red";
condition5 = false;
}
}
function validateEmail() {
var inputEmail = document.getElementById("email").value;
var emailREGEX = /^\w+([\.-]?\w+)*@\w+([\.-]?\w+)*(\.\w{2,3})+$/;
if (inputEmail.match(emailREGEX)) {
document.getElementById("validationEmail").style.display = "none";
document.getElementById("groupInputEmail").style.borderColor = "green";
condition6 = true;
} else {
document.getElementById("validationEmail").style.display = "block";
document.getElementById("groupInputEmail").style.borderColor = "red";
condition6 = false;
}
}
function validateWhatsapp() {
var inputWhatsapp = document.getElementById("whatsapp").value;
var whatsappREGEX = /^\d{9,}$/;
if (inputWhatsapp.match(whatsappREGEX)) {
document.getElementById("validationWhatsapp").style.display = "none";
document.getElementById("groupInputWhatsapp").style.borderColor = "green";
condition7 = true;
} else {
document.getElementById("validationWhatsapp").style.display = "block";
document.getElementById("groupInputWhatsapp").style.borderColor = "red";
condition7 = false;
}
}
function validateLine() {
var inputLine = document.getElementById("line").value;
if (inputLine != "") {
document.getElementById("groupInputLine").style.borderColor = "green";
condition8 = true;
} else {
document.getElementById("groupInputLine").style.borderColor = "red";
condition8 = false;
}
}
function validateGithub() {
var inputGithub = document.getElementById("github").value;
if (inputGithub != "") {
document.getElementById("groupInputGithub").style.borderColor = "green";
condition9 = true;
} else {
document.getElementById("groupInputGithub").style.borderColor = "red";
condition9 = false;
}
}
function validatePlace() {
var inputPlace = document.getElementById("place").value;
if (inputPlace != "") {
document.getElementById("groupInputPlace").style.borderColor = "green";
condition10 = true;
} else {
document.getElementById("groupInputPlace").style.borderColor = "red";
condition10 = false;
}
}
function validateDate() {
var inputDate = document.getElementById("date").value;
var today = Date.now();
var birthDate = Date.parse(inputDate);
var age = (today - birthDate) / (1000 * 60 * 60 * 24 * 365);
if (valueDate == null || valueDate == "" || age == null || age == "") {
document.getElementById("groupInputDate").style.borderColor = "red";
condition11 = false;
} else if (age > 17) {
document.getElementById("validationDate").style.display = "none";
document.getElementById("groupInputDate").style.borderColor = "green";
condition11 = true;
} else {
document.getElementById("validationDate").style.display = "block";
document.getElementById("groupInputDate").style.borderColor = "red";
condition11 = false;
}
}
function validateCv() {
var inputCv = document.getElementById("cv").value;
if (inputCv != "") {
document.getElementById("groupInputCv").style.borderColor = "green";
condition12 = true;
} else {
document.getElementById("groupInputCv").style.borderColor = "red";
condition12 = false;
}
}
function validateId() {
var inputId = document.getElementById("id").value;
if (inputId != "") {
document.getElementById("groupInputId").style.borderColor = "green";
condition13 = true;
} else {
document.getElementById("groupInputId").style.borderColor = "red";
condition13 = false;
}
}
function validateForm1() {
validateGroup();
validatePass();
confirmPass();
validateStatus();
if (
condition1 == true &&
condition2 == true &&
condition3 == true &&
condition4 == true
) {
next(1);
}
}
function validateForm2() {
validateName();
validateEmail();
validateWhatsapp();
validateLine();
validateGithub();
if (
condition5 == true &&
condition6 == true &&
condition7 == true &&
condition8 == true &&
condition9 == true
) {
next(1);
}
}
function validateAllForm() {
validateGroup();
validatePass();
confirmPass();
validateStatus();
validateName();
validateEmail();
validateWhatsapp();
validateLine();
validateGithub();
validatePlace();
validateDate;
validateCv();
validateId();
if (
condition1 == true &&
condition2 == true &&
condition3 == true &&
condition4 == true &&
condition5 == true &&
condition6 == true &&
condition7 == true &&
condition8 == true &&
condition9 == true &&
condition10 == true &&
condition11 == true &&
condition12 == true &&
condition13 == true
) {
document.inputForm.submit();
window.location.href = "landingPage.html";
}
}
// Show Password
const togglePassword = document.querySelector("#togglePassword");
const password = document.querySelector("#password");
togglePassword.addEventListener("click", function () {
// toggle the type attribute
const type1 =
password.getAttribute("type") === "password" ? "text" : "password";
password.setAttribute("type", type1);
// toggle the icon
const icon1 =
togglePassword.getAttribute("class") === "far fa-eye-slash"
? "far fa-eye"
: "far fa-eye-slash";
togglePassword.setAttribute("class", icon1);
});
// Show Confirm Password
const toggleConfirmPassword = document.querySelector("#toggleConfirmPassword");
const confirmPassword = document.querySelector("#confirmPassword");
toggleConfirmPassword.addEventListener("click", function () {
// toggle the type attribute
const type2 =
confirmPassword.getAttribute("type") === "password" ? "text" : "password";
confirmPassword.setAttribute("type", type2);
// toggle the icon
const icon2 =
toggleConfirmPassword.getAttribute("class") === "far fa-eye-slash"
? "far fa-eye"
: "far fa-eye-slash";
toggleConfirmPassword.setAttribute("class", icon2);
});