generated from Code-Institute-Org/ci-full-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
signup.html
177 lines (173 loc) · 4.86 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
<!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, 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-->
<title>Love Running</title>
<!--Favicon-->
<link
rel="apple-touch-icon"
sizes="180x180"
href="assets/favicon/apple-touch-icon.png"
/>
<link
rel="icon"
type="image/png"
sizes="32x32"
href="assets/favicon/favicon-32x32.png"
/>
<link
rel="icon"
type="image/png"
sizes="16x16"
href="assets/favicon/favicon-16x16.png"
/>
<link rel="stylesheet" href="assets/css/style.css" />
</head>
<body>
<!--Header-->
<header>
<a href="index.html">
<h1 id="logo">Love Running</h1>
</a>
<input type="checkbox" id="nav-toggle" name="nav-toggle" />
<label for="nav-toggle" class="nav-toggle-label"
><i class="fa-solid fa-bars"></i
></label>
<nav>
<ul id="menu">
<li><a href="index.html">Home</a></li>
<li><a href="gallery.html">Gallery</a></li>
<li><a href="signup.html" class="active">Sign up</a></li>
</ul>
</nav>
</header>
<!--Main content-->
<main>
<section id="signup">
<form
action="https://formdump.codeinstitute.net"
method="post"
id="signup-form"
>
<h2>
<i class="fa-solid fa-heart-pulse"></i> Let's get you signed up!
</h2>
<div >
<label for="first_name">First Name</label>
<input
type="text"
name="first_name"
id="first_name"
class="text-input"
aria-label="Please enter your first name"
required
/>
<br />
<label for="last_name">Last Name</label>
<input
type="text"
name="last_name"
id="last_name"
class="text-input"
aria-label="Please enter your last name"
required
/>
<br />
<label for="email_address">Email Address</label>
<input
type="email"
name="email_address"
id="email_address"
class="text-input"
aria-label="Please enter your email address"
required
/>
<br />
</div>
<div class="radio_buttons">
<input
type="radio"
id="road"
name="running_preference"
value="Road"
required
/>
<label for="road">Road</label>
<input
type="radio"
id="trail"
name="running_preference"
value="Trail"
/>
<label for="trail">Trail</label>
<input
type="radio"
id="both"
name="running_preference"
value="Both"
/>
<label for="both">Both</label>
</div>
<input class="join-button" type="Submit" value="Let's run!" />
</form>
</section>
</main>
<!--Footer-->
<footer>
<ul id="social-networks">
<li>
<a
href="https://www.facebook.com"
target="_blank"
rel="noopener"
aria-label="Visit our Facebook page (opens in a new tab)"
><i class="fa-brands fa-facebook"></i
></a>
</li>
<li>
<a
href="https://www.twitter.com/"
target="_blank"
rel="noopener"
aria-label="Visit our Twitter page (opens in a new tab)"
><i class="fa-brands fa-square-twitter"></i
></a>
</li>
<li>
<a
href="https://www.youtube.com"
target="_blank"
rel="noopener"
aria-label="Visit our YouTube page (opens in a new tab)"
><i class="fa-brands fa-square-youtube"></i
></a>
</li>
<li>
<a
href="https://www.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 Awsome kit-->
<script
src="https://kit.fontawesome.com/e87966439a.js"
crossorigin="anonymous"
></script>
</body>
</html>