generated from Code-Institute-Org/gitpod-full-template
-
Notifications
You must be signed in to change notification settings - Fork 1
/
signup.html
97 lines (80 loc) · 3.52 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
<!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="Soul & Surf local community for surfers in Bundoran, Ireland">
<meta name="keywords" content="surf activity, surf community, local community, bundoran, ireland">
<!-- Stylesheets -->
<link rel="stylesheet" href="assets/css/style.css">
<!-- Page Title -->
<title>Soul & Surf</title>
</head>
<body>
<header>
<!-- Soul & Surf logo(link to home page) -->
<a href="index.html">
<h1 id="logo">Soul & Surf</h1>
</a>
<!-- Navigation Menu -->
<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>
<!-- Sign Up Section -->
<section class="signup-section">
<!-- I got inspired from Essentials Project Love Running for my Panel code -->
<!-- Panel Form -->
<form action="https://formdump.codeinstitute.net/" method="POST" class="form-panel">
<h2>Let's get you surf up!</h2>
<label for="fname">First Name</label>
<input id="fname" type="text" name="first_name" required class="text-field">
<label for="lname">Last Name</label>
<input id="lname" type="text" name="last_name" required class="text-field">
<label for="email">Email Address</label>
<input id="email" type="email" name="email_address" required class="text-field">
<label for="pilates">Pilates</label>
<input id="pilates" type="radio" name="activity_favorite" value="Pilates" required>
<label for="yoga">Surf Yoga</label>
<input id="yoga" type="radio" name="activity_favorite" value="Surf Yoga">
<label for="slackline">Slackline</label>
<input id="slackline" type="radio" name="activity_favorite" value="Slackline">
<input type="submit" value="Let's Ride!" class="signup-buttom">
</form>
</section>
<!-- Footer -->
<footer>
<ul class="social-network">
<li>
<a href="https://facebook.com" target="_blank" rel="noopener"
aria-label="Visit our Facebook page (opens in a new tab)"><i class="fab fa-facebook"></i></a>
</li>
<li>
<a href="https://twitter.com" target="_blank" rel="noopener"
aria-label="Visit our Twitter page (opens in a new tab)"><i class="fab fa-twitter-square"></i></a>
</li>
<li>
<a href="https://youtube.com" target="_blank" rel="noopener"
aria-label="Visit our Youtube page (opens in a new tab)"><i class="fab fa-youtube-square"></i></a>
</li>
<li>
<a href="https://instagram.com" target="_blank" rel="noopener"
aria-label="Visit our Instagram page (opens in a new tab)"><i class="fab fa-instagram"></i></a>
</li>
</ul>
</footer>
<!-- Font Awesome Script -->
<script src="https://kit.fontawesome.com/5aaf6a9662.js" crossorigin="anonymous"></script>
</body>
</html>