generated from Code-Institute-Org/gitpod-full-template
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsignup.html
73 lines (68 loc) · 3.23 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
<!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="mind and body club, for yoga, pilates, meditation and mindfulness">
<meta name="keywords" content="mind and body, yoga, pilates, meditation, mindfulness">
<link rel="stylesheet" href="assets/css/style.css">
<title>Mind&Body</title>
</head>
<body>
<!-- Header and icon navigation -->
<header>
<a href="index.html">
<h1 id="logo">Mind & Body</h1>
</a>
<nav id="menu">
<ul>
<li><a href="signup.html" class="active">Sign Up</a></li>
<li><a href="classes.html">Classes</a></li>
<li><a href="index.html">Home</a></li>
</ul>
</nav>
</header>
<!-- sign up section -->
<section class="sign-up-background">
<form action="thankyou.html" method="get" class="sign-up-form">
<h2>Let's get you signed up! <i class="fas fa-heartbeat"></i></h2>
<label for="fname">First Name:</label><br>
<input type="text" id="fname" name="first_name" class="text-input" required><br>
<label for="lname">Last Name:</label><br>
<input type="text" id="lname" name="last_name" class="text-input" required><br>
<label for="email-address">Email Address:</label><br>
<input type="email" id="email-address" name="email_address" class="text-input" required><br>
<label for="choose-your-class">Choose your class</label><br>
<select name="choose_your_class" id="choose-your-class">
<option value="yoga-weekday">Yoga Mon-Fri</option>
<option value="yoga-weekend">Yoga Saturdays</option>
<option value="pilates-weekday">Pilates Mon-Fri</option>
<option value="pilates-weekend">Pilates Saturdays</option>
<option value="both-weekdays">Both Mon-Fri</option>
<option value="both-weekend">Both Saturdays</option>
</select><br>
<input type="submit" class="submit-button">
</form>
</section>
<!-- Social network links -->
<footer>
<h2>CONTACT US</h2>
<hr>
<h3>Got a question? Get in touch through our media sites!</h3>
<ul class="social-networks">
<li >
<a href="http://facebook.com" target="facebook" rel="noopener" aria-label="visit our facebook page (opens in a new tab)"><i class="fa-brands fa-square-facebook"></i></a>
</li>
<li >
<a href="http://twitter.com" target="twitter" 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="http://instagram.com" target="instagram" rel="noopener" aria-label="visit our instagram page (opens in a new tab)"><i class="fa-brands fa-square-instagram"></i></a>
</li>
</ul>
</footer>
<!-- font awesome script -->
<script src="https://kit.fontawesome.com/62b6c595da.js" crossorigin="anonymous"></script>
</body>
</html>