-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathSignUp.html
More file actions
84 lines (81 loc) · 2.93 KB
/
Copy pathSignUp.html
File metadata and controls
84 lines (81 loc) · 2.93 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
82
83
84
<!DOCTYPE html>
<html lang="en">
<head>
<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>Document</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<video autoplay loop muted plays-inline class="backvid">
<source src="img/1videoplayback.mp4" type="video/mp4">
</video>
<div class="navbar">
<nav>
<a href="#"><img src="img/LifeSource Foundation-1 (2).png" alt="logo" height="50px" width="200px"></a>
<ul>
<li> <a href="index.html">HOME</a> </li>
<li> <a href="SignUp.html">SIGN UP</a> </li>
<li> <a href="Login.html">LOGIN</a> </li>
<li> <a href="donorpanel.html">DONOR PANEL</a> </li>
<li> <a href="patientpanel.html">PATIENT PANEL</a> </li>
<li> <a href="admin.html">ADMIN</a> </li>
<li> <a href="volunteer.html">VOLUNTEER</a> </li>
<li> <a href="guest.html">GUEST</a> </li>
</ul>
</nav>
</div>
<div>
<div class="centersignup">
<h1 class="signup">Sign Up</h1>
<form method="post">
<br>
<h2>Are you a:</h2>
<br>
<div class="btn-group">
<button>Volunteer</button>
<button>Patient</button>
<button>Donor</button>
<button>Admin</button>
</div>
<div class="textfield">
<input type="text" required>
<span></span>
<label>First Name</label>
</div>
<div class="textfield">
<input type="text" required>
<span></span>
<label>Last Name</label>
</div><div class="textfield">
<input type="email" required>
<span></span>
<label>Email Address</label>
</div>
<div class="textfield">
<input type="password" required>
<label>Password</label>
</div>
<p>We'd love to send you
our articles and latest news by email,
giving you the best opportunity to stay
up to date with expert written health
and lifestyle content.</p>
<br>
<ul>
<input type="radio" id="newsletter>
<label for="newsletter">Recieve email through newsletter</label>
</ul>
<br>
<input type="submit" value="SignUp">
<div class="signuplink"> Already got an account?
<a href="Login.html">Login</a>
<br>
</div>
</form>
<br>
</div>
</div>
</body>
</html>