-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvolunteersignup.html
38 lines (34 loc) · 1.28 KB
/
volunteersignup.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
37
38
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>IVMS - Volunteer Sign Up</title>
<link rel="stylesheet" href="./Styles/volunteersignup.css">
<link rel="shortcut icon" href="/Front-end/Assets/logo2.jpg" type="image/x-icon" />
</head>
<body>
<div class="form-container">
<form id="volunteerForm" class="sign-up-form">
<h2>Sign Up</h2>
<!-- <h6>Volunteer</h6> -->
<div class="input-field">
<input type="text" id="name" placeholder="Full Name" required>
</div>
<div class="input-field">
<input type="email" id="email" placeholder="Email" required>
</div>
<div class="input-field">
<input type="tel" id="phone" placeholder="Phone Number" required>
</div>
<div class="input-field">
<input type="password" id="password" placeholder="Password" required>
<input type="checkbox" id="showPassword"/>Show Password
</div>
<button type="submit" class="submit-btn">Sign Up</button>
<p class="already-registered">Already have an account? <a href="login.html">Sign In</a></p>
</form>
</div>
<script src="./Scripts/volunteersignup.js"></script>
</body>
</html>