generated from Code-Institute-Org/gitpod-full-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsign-up.html
79 lines (71 loc) · 3.24 KB
/
sign-up.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
71
72
73
74
75
76
77
78
79
<!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">
<meta name="description" content="Love running club for runners in Dublin">
<meta name="keywords" content="love running, running club, ireland, dublin">
<link href="assets/css/style.css" rel="stylesheet">
<title>Love Running</title>
</head>
<body>
<header>
<a href="index.html">
<h1 id="logo">Love Running</h1>
<nav>
<ul id="menu">
<li>
<a href="sign-up.html" class="active">Sign Up</a>
</li>
<li>
<a href="gallary.html">Gallary</a>
</li>
<li>
<a href="index.html">Home</a>
</li>
</ul>
</nav>
<section class="form-section">
<form method="POST" action="https://formdump.codeinstitute.net/" class="signup-form">
<h2>Let's get you signed up! <i class="fas fa-heartbeat"></i></h2>
<label for="fname">First Name</label>
<input id="fname" name="first_name" type="text" class="text-input" required>
<label for="lname">Last Name</label>
<input id="lname" name="last_name" type="text" class="text-input" required>
<label for="email">Email Address</label>
<input type="email" id="email" name="email_address" class="text-input" 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>
<!-- social links here-->
<ul class="social-networks">
<li>
<a href="https://facebook.com" target="_blank" rel="noopener" aria-label="Visit our facebookpage (opens in a new tab">
<i class="fa-brands fa-facebook"></i></a>
</li>
<li>
<a href="http://twitter.com" target="_blank" rel="noopener" aria-label="Visit our twitter page (opens in a new tab">
<i class="fa-brands fa-twitter"></i></a>
</li>
<li>
<a href="http://youtube.com" target="_blank" rel="noopener" aria-label="Visit our youtube page (opens in a new tab">
<i class="fa-brands fa-youtube"></i></a>
</li>
<li>
<a href="http://instagram.com" target="_blank" rel="noopener" aria-label="Visit our instagram page (opens in a new tab">
<i class="fa-brands fa-instagram"></i></a>
</li>
</ul>
</footer>
<!-- font awesome script -->
<script src="https://kit.fontawesome.com/45c35d510d.js" crossorigin="anonymous"></script>
</body>
</html>