-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindexSignUP.html
More file actions
61 lines (61 loc) · 2.11 KB
/
Copy pathindexSignUP.html
File metadata and controls
61 lines (61 loc) · 2.11 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Crack Log-In</title>
<link rel="shortcut icon"
href="images/icon.png"
type="image/x-icon">
<link rel="stylesheet" href="stylelogin.css">
<link rel="stylesheet" href="indexlogin.css">
</head>
<body>
<div class="login-box">
<form class="form" action="https://echo.htmlacademy.ru/"></form>
<h2>SignUp</h2>
<form>
<div class="user-box">
<input type="text" name="S-Username" required="">
<label>Username</label>
</div>
<div class="user-box">
<input type="email" name="S-Email" required="">
<label>Email</label>
</div>
<div class="user-box">
<input type="password" name="S-password1" required="">
<label>Password</label>
</div>
<div class="user-box">
<input type="password" name="S-password2" required="">
<label>Repeat the password</label>
</div>
<a class="SubmitLogin" href="indexlogin.html" type="Submit">
<span></span>
<span></span>
<span></span>
<span></span>
Submit
</a>
<a href="indexlogin.html">
<span></span>
<span></span>
<span></span>
<span></span>
Login
</a>
</form>
</div>
</form>
<script lang="Js">
var i = document.createElement('input');
if ('placeholder' in i) { }
</script>
<script lang ='JS'>
let SubmitLogin = document.querySelector('.SubmitLogin')
SubmitLogin.addEventListener('click', function(){
alert("Вы зарегистрировались на этом сайте!")
})
</script>
</body>
</html>