-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathregistrationPage.html
More file actions
81 lines (72 loc) · 3.25 KB
/
Copy pathregistrationPage.html
File metadata and controls
81 lines (72 loc) · 3.25 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
<!DOCTYPE html>
<html lang = "en">
<head>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Arvo:ital,wght@0,400;0,700;1,400;1,700&family=Courgette&family=Dancing+Script:wght@400..700&family=Kode+Mono:wght@400..700&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Prata&family=Protest+Revolution&family=Zilla+Slab:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&display=swap" rel="stylesheet">
<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>Website With Login & Registration | Codehal</title>
<link rel="stylesheet" href="styleRegistration.css">
</head>
<body>
<header>
<h2 class="logo">SDSS</h2>
<nav class="navigation">
<a href="index.html">Home</a>
<a href="Page 1.html">Booking</a>
<a href="Main_Track.html">Tracking</a>
<a href="c.html">Contact</a>
<button class="btnLogin-popup">Login</button>
</nav>
</header>
<script>
document.addEventListener('DOMContentLoaded', function() {
const loginButton = document.querySelector('.btnLogin-popup');
if (loginButton) {
loginButton.addEventListener('click', function() {
window.location.href = 'LoginPage.html';
});
}
});
</script>
<div class="wrapper">
<div class="form-box">
<h2>Registration</h2>
<form action="/register" method="post">
<div class="input-box">
<span class = "icon">
<ion-icon name="person"></ion-icon>
</span>
<input type="text" required>
<label>Username</label>
</div>
<div class="input-box">
<span class = "icon">
<ion-icon name="mail"></ion-icon>
</span>
<input type="text" required>
<label>Email</label>
</div>
<div class="input-box">
<span class = "icon">
<ion-icon name="lock"></ion-icon>
</span>
<input type="Password" required>
<label>Password</label>
</div>
<div class="remember-forgot">
<label> <input type = "checkbox">Agree to Terms and Conditions </label>
</div>
<button type="Submit" class="btn">Register</button>
<div class="login-register">
<p>Alredy have an account? <a href ="LoginPage.html"
class = login-link>Login</a></p>
</div>
</form>
</div>
</div>
<script src="https://unpkg.com/ionicons@4.5.10-0/dist/ionicons.js"></script>
</body>
</html>