-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsignup.html
78 lines (56 loc) · 2.38 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<link rel="stylesheet" href="style/style_signup.css">
</head>
<body>
<div class="centerlize">
<div class="container">
<a href="http://www.freepik.com"><img class="img_signup" src="icons/4565.svg"></a>
<form action="" type="POST" class="container_box">
<p class="title">Sign up</p>
<input id="name" name="firstname" type="text" placeholder="Firstname" class="$">
<input name="lastname" type="text" placeholder="Lastname">
<input name="email" type="email" placeholder="E-mail">
<input oninput="checkPass()" id="password" name="password" type="password" placeholder="Password">
<input oninput="checkPass()" id="re-password" name="re-password" type="password" placeholder="Repeat password">
<input name="check" class="check" type="checkbox">
<p class="terms">I've read all statements from <a href="">Terms of service</a></p>
<button type="submit" id="submit" class="header_button-in">Sign Up</button>
</form>
</div>
</div>
</body>
<script src="https://code.jquery.com/jquery-3.5.1.js"></script>
<script>
function checkPass() {
let pass = document.getElementById("password").value;
let re_pass = document.getElementById("re-password").value;
if (pass != "" && re_pass != "")
if (pass != re_pass) {
document.getElementById("re-password").classList.add("error");
$("#submit").css({
"pointer-events": "none",
"background": "#6494ed7a"
});
} else {
document.getElementById("re-password").classList.remove("error");
$("#submit").css({
"pointer-events": "auto",
"background": "#6495ED"
});
}
else {
document.getElementById("re-password").classList.remove("error");
$("#submit").css({
"pointer-events": "auto",
"background": "#6495ED"
});
}
}
</script>
</html>