-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsignup.html
58 lines (57 loc) · 2.54 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
<!DOCTYPE html>
<html>
<head>
<title>Sign up</title>
<link rel="stylesheet" href="css/signup.css">
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Inter">
</head>
<body>
<div class="banner">
<header>
<div class="wrapper">
<div class="logo">
<img src="Images/Helping Hands Logo.png" alt="Helping Hands Logo" style=" position: relative; transform:translate(0px, 16px)" class="img">
<a> HELPING <span class="multicolorbanner">HANDS</span></a>
</div>
<nav>
<a href="contactform.html">Contact</a>
<a href="aboutpage.html">About</a>
</nav>
</div>
</header>
</div>
<div class="banner-area">
<h2>Fixed Banner</h2>
</div>
<body>
<div class="AccountBox">
<div class="MissionStatement">
<H1>Empower change with us. Explore countless volunteering opportunities effortlessly. Your journey to make a difference starts here. </H1>
</div>
<a id="Title" p><span class="multicolorbanner">Welcome to</span> HELPING <span class="multicolorbanner">HANDS</span></a>
<div class="AccountOption">
<li><a id="accountLink" href="signin.html">Sign in<a></li>
<li><a id="accountLink" href="signup.html">New Account<a></li>
<div class="selectionBox"></div>
</div>
<form action="signup.php" method="POST">
<div class="InputBox">
<label for="email"><b>Email</b></label>
<input type="text" placeholder="Enter Email" name="email" required>
</div>
<div class="InputBox">
<label for="psw"><b>Password</b></label>
<input type="password" placeholder="Enter Password" name="password" minlength="8" required>
</div>
<div class="accountCheck">
<input type="radio" id="volunteer" name="userType" value="volunteer" required>
<label for="volunteer">Volunteer</label><br>
<input type="radio" id="organization" name="userType" value="organization" required>
<label for="organization">Organization</label><br>
</div>
<div class="InputBox">
<button type="submit" id="signup">Sign up</button>
</div>
</form>
</div>
</body>