-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
31 lines (28 loc) · 912 Bytes
/
Copy pathindex.html
File metadata and controls
31 lines (28 loc) · 912 Bytes
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Animated Register Form</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="form-container">
<h2>Register</h2>
<form id="registerForm">
<div class="input-group">
<input type="text" name="name" placeholder="Full Name" required />
</div>
<div class="input-group">
<input type="email" name="email" placeholder="Email Address" required />
</div>
<div class="input-group">
<input type="password" name="password" placeholder="Password" required />
</div>
<button type="submit" class="btn-submit">Sign Up</button>
</form>
<div class="success-message" id="successMessage">Registration Successful 🎉</div>
</div>
<script src="script.js"></script>
</body>
</html>