generated from Code-Institute-Org/gitpod-full-template
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsign-up.html
102 lines (90 loc) · 4 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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
<!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="MINDX is a website specialising in mindfulness as a form of cognitive behavioural therapy for inquisitive and novice meditators alike" />
<meta name="keywords" content="mindfulness, cognitive behavioural therapy, guided meditation" />
<meta name="author" content="Faris Dhoot" />
<link rel="stylesheet" href="assets/css/style.css" />
<link rel="icon" href="assets/images/favicon.ico" />
<link rel="stylesheet" href="https://fonts.googleapis.com/icon?family=Material+Icons" />
<title>MINDX</title>
</head>
<body>
<!-- Hero Image & Ethos -->
<!-- Logo -->
<header>
<a href="index.html">
<h1 id="logo">Mind<span>x</span></h1>
</a>
<!-- Navigation Bar -->
<nav>
<ul class="navbar">
<li>
<a href="index.html" class="nav-hov">Home</a>
</li>
<li>
<a href="guided-meditations.html" class="nav-hov">Guided Meditations</a>
</li>
<li>
<div id="signup-call">
<a href="sign-up.html">Sign Up</a>
</div>
</li>
</ul>
</nav>
</header>
<!-- Sign Up Form -->
<section class="sign-up">
<h2 id="animation-header">Open your minds eye</h2>
<form id="sign-up-form">
<h2>Sign up for more!</h2>
<label class="sign-label" for="fname">First Name:</label>
<input class="text-details" id="fname" name="first_name" type="text" placeholder="Forename" required />
<label class="sign-label" for="lname">Last Name:</label>
<input class="text-details" id="lname" name="last_name" type="text" placeholder="Surname" required />
<label class="sign-label" for="email">Email Address:</label>
<input class="text-details" id="email" name="email_address" type="email" placeholder="Email" required />
<label class="sign-label" for="phone">Phone Number:</label>
<input class="text-details" id="phone" name="mobile_number" type="tel" placeholder="Number" />
<br />
<label class="sign-label" for="reasons">Reasons For Joining:</label>
<textarea class="text-details text-label" id="reasons" cols="50" rows="10" name="reasons" placeholder="Concerns......."></textarea>
<br />
<div id="button-container">
<input id="submit-button" type="button" value="Start Your Journey" />
</div>
</form>
<!-- Sign Up Animated Image -->
<div id="eye-animation" aria-hidden="true">
<div id="shut-animation">
<span></span>
</div>
<div id="ball-animation"></div>
</div>
</section>
<!-- Social Media Links & Contact Details -->
<footer>
<ul class="social-networks">
<li>
<a href="https://facebook.com" rel="noopener" target="_blank" aria-label="Explore our Facebook page (opens in a new tab)"><i class="fab fa-facebook-f"></i></a>
</li>
<li>
<a href="https://youtube.com" rel="noopener" target="_blank" aria-label="Explore our Youtube page (opens in a new tab)"><i class="fab fa-youtube"></i></a>
</li>
<li>
<a href="https://instagram.com" rel="noopener" target="_blank" aria-label="Explore our Instagram page (opens in a new tab)"><i class="fab fa-instagram"></i></a>
</li>
<li>
<a href="https://twitter.com" rel="noopener" target="_blank" aria-label="Explore our Twitter page (opens in a new tab)"><i class="fab fa-twitter"></i></a>
</li>
</ul>
<a href="mailto:mindfulness@mindx.com">Contact Us: mindfulness@mindx.com</a>
<p><i class="far fa-copyright"></i> 2021 MINDX.Ltd</p>
</footer>
<!-- Font Awesome Script -->
<script src="https://kit.fontawesome.com/79a9048c05.js" crossorigin="anonymous"></script>
</body>
</html>