-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsignup.html
More file actions
64 lines (58 loc) · 2.24 KB
/
signup.html
File metadata and controls
64 lines (58 loc) · 2.24 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>Love Running</title>
<link href="style.css" rel="stylesheet" type="text/css" />
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.8.1/css/all.css"
integrity="sha384-50oBUHEmvpQ+1lW4y57PTFmhCaXp0ML5d60M1M7uH2+nqUivzIebhndOJK28anvf" crossorigin="anonymous">
<link href="assets/css/style.css" rel="stylesheet" type="text/css" />
</head>
<body>
<header>
<a href="index.html">
<h2 id="logo">Running Wild</h2>
</a>
<nav>
<ul id="menu">
<li>
<a class="active" href="signup.html">Support Us</a>
</li>
<li>
<a href="gallery.html">Gallery</a>
</li>
<li>
<a href="index.html">Home</a>
</li>
</ul>
</nav>
</header>
<section class="form-section">
<form class="signup-form" method="POST" action="https://formdump.codeinstitute.net/">
<h2>We'd love to hear from you!<i class="fas fa-heartbeat"></i></h2>
<label for="fname">First Name</label>
<input class="text-input" type="text" id="fname" name="first_name" required/>
<label for="lname">Last Name</label>
<input class="text-input" type="text" id="lname" name="last_name" required/>
<label for="email">Email Address</label>
<input class="text-input" id="email" type="email" name="email_address" required/>
<label for="volunteer">Volunteer</label>
<input id="volunteer" type="radio" name="support_preference" value="volunteer" required/>
<label for="donate">Donate</label>
<input id="donate" type="radio" name="support_preference" value="donate"/>
<label for="both">Both</label>
<input id="both" type="radio" name="support_preference" value="both"/>
<input class="join-button" type="submit" value="Support Us!"/>
</form>
</section>
<footer>
<ul class="social-networks">
<li><a href="https://www.facebook.com" target="_blank"><i class="fab fa-facebook"></i></a></li>
<li><a href="https://twitter.com" target="_blank"><i class="fab fa-twitter-square"></i></a></li>
<li><a href="https://youtube.com" target="_blank"><i class="fab fa-youtube-square"></i></a></li>
<li><a href="https://instagram.com" target="_blank"><i class="fab fa-instagram"></i></a></li>
</ul>
</footer>
</body>
</html>