-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathsignup.html
70 lines (60 loc) · 2.82 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
59
60
61
62
63
64
65
66
67
68
69
70
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="Love Running club for runners in Dublin, Ireland. Urban running, trail running, Dublin docklands and phoenix park.">
<meta name="keywords" content="love running, run, running club, runners, ireland, dublin, sport, exercise">
<title>Love Running</title>
<!-- Stylesheet -->
<link href="assets/css/style.css" rel="stylesheet" type="text/css" />
</head>
<body>
<header>
<a href="index.html">
<h2 id="logo">Love Running</h2>
</a>
<nav>
<ul id="menu">
<li>
<a class="active" href="signup.html">Sign Up</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 method="POST" action="https://formdump.codeinstitute.net/" class="signup-form">
<h2><i class="fas fa-heartbeat"></i> Let's get you signed up!</h2>
<label for="fname">First Name</label>
<input class="text-input" id="fname" name="first_name" type="text" required>
<label for="lname">Last Name</label>
<input class="text-input" id="lname" name="last_name" type="text" required>
<label for="email">Email Address</label>
<input class="text-input" type="email" id="email" name="email_address" required>
<label for="road">Road</label>
<input type="radio" id="road" name="running_preference" value="road" required>
<label for="trail">Trail</label>
<input type="radio" id="trail" name="running_preference" value="trail" required>
<label for="both">Both</label>
<input type="radio" id="both" name="running_preference" value="both" required>
<input class="join-button" type="submit" value="Let's Run!">
</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://www.twitter.com" target="_blank"><i class="fab fa-twitter-square"></i></a></li>
<li><a href="https://www.youtube.com" target="_blank"><i class="fab fa-youtube"></i></a></li>
<li><a href="https://www.instagram.com" target="_blank"><i class="fab fa-instagram"></i></a></li>
</ul>
</footer>
<!-- Font awesome script -->
<script src="https://kit.fontawesome.com/b83175b9a4.js" crossorigin="anonymous"></script>
</body>
</html>