forked from nikhila-kuchimanchi/oratory_coach_results
-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathsignup.html
36 lines (35 loc) · 1.41 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Sign Up - Oratory Coach</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="auth-container">
<h2>Sign Up</h2>
<form id="signupForm">
<div class="input-group">
<label for="name">Name</label>
<input type="text" id="name" name="name" required placeholder="Enter your name">
</div>
<div class="input-group">
<label for="email">Email</label>
<input type="email" id="email" name="email" required placeholder="Enter your email">
</div>
<div class="input-group">
<label for="password">Password</label>
<input type="password" id="password" name="password" required placeholder="Create a password">
</div>
<div class="input-group">
<label for="confirm-password">Confirm Password</label>
<input type="password" id="confirm-password" name="confirm-password" required placeholder="Confirm your password">
</div>
<button type="submit" class="btn">Sign Up</button>
</form>
<p>Already have an account? <a href="login.html">Login here</a></p>
</div>
<script src="script.js"></script>
</body>
</html>