-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathregistation.html
More file actions
61 lines (54 loc) · 2.29 KB
/
Copy pathregistation.html
File metadata and controls
61 lines (54 loc) · 2.29 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 lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Register | Wedding Events</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<header class="topbar">
<nav class="nav">
<a href="index.html" class="brand">Wedding Events</a>
<div class="nav-links">
<a href="index.html">Home</a>
<a href="login.html">Login</a>
<a href="registation.html" class="active">Register</a>
</div>
</nav>
</header>
<main class="auth-container">
<div class="auth-card">
<h2>Create an Account</h2>
<form id="registrationForm" novalidate>
<div class="form-group">
<label for="fullName">Full Name</label>
<input type="text" id="fullName" name="fullName" placeholder="Enter your full name">
<div class="error" id="nameError"></div>
</div>
<div class="form-group">
<label for="regEmail">Email Address</label>
<input type="email" id="regEmail" name="regEmail" placeholder="Enter your email">
<div class="error" id="regEmailError"></div>
</div>
<div class="form-group">
<label for="regPassword">Password</label>
<input type="password" id="regPassword" name="regPassword" placeholder="Enter a password">
<div class="error" id="regPasswordError"></div>
</div>
<div class="form-group">
<label for="confirmPassword">Confirm Password</label>
<input type="password" id="confirmPassword" name="confirmPassword" placeholder="Confirm your password">
<div class="error" id="confirmPasswordError"></div>
</div>
<button type="submit" class="btn">Register</button>
<div class="message" id="formMessage"></div>
</form>
</div>
</main>
<footer>
<p>© <span id="year"></span> Wedding Events. All rights reserved.</p>
</footer>
<script src="script.js"></script>
</body>
</html>