generated from Code-Institute-Org/gitpod-full-template
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcontact.html
185 lines (177 loc) · 9.78 KB
/
contact.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
178
179
180
181
182
183
184
185
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css" integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm" crossorigin="anonymous">
<script src="https://kit.fontawesome.com/ae98632ed3.js" crossorigin="anonymous"></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/hover.css/2.1.1/css/hover-min.css" type="text/css" />
<link rel="stylesheet" type="text/css" href="assets/css/style.css">
<title>Smart Soccer</title>
</head>
<body>
<header>
<!-- Navbar -->
<nav class="navbar navbar-expand-lg navbar-dark bg-dark fixed-top">
<div class="container">
<a class="navbar-brand" href="index.html">
SMART Soccer <span><i class="fas fa-brain"></i><i class="fas fa-futbol"></i></span>
</a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarResponsive" aria-controls="navbarResponsive" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarResponsive">
<ul class="navbar-nav ml-auto">
<li class="nav-item">
<a class="nav-link" href="index.html">Home</a>
</li>
<li class="nav-item">
<a class="nav-link" href="training.html">Training</a>
</li>
<li class="nav-item">
<a class="nav-link" href="blog-start.html">Blog</a>
</li>
<li class="nav-item active">
<a class="nav-link" href="contact.html">Contact
<span class="sr-only">(current)</span>
</a>
</li>
</ul>
</div>
</div>
</nav>
</header>
<!-- Contact title -->
<section class="contact-heading-section">
<div class="container-fluid">
<div class="row row justify-content-center">
<div class="col-12 contact-header">
<h2>Contact</h2>
</div>
</div>
</div>
</section>
<!-- Contact Form -->
<section class="contact-form-section">
<form class="inline">
<div class="container-fluid contact-form-content">
<div class="form-group row justify-content-center">
<div class="col-lg-4 col-sm-12 inquiry-type-info">
<h3>1. Inquiry Type</h3>
<div class="form-group row justify-content-center">
<div class="form-group col-9 col-md-8 col-lg-10 radio">
<div class="form-check">
<input class="form-check-input" type="radio" name="radioOptions" value="I have a question" id="question" required>
<label class="form-check-label" for="question">
I have one/several Question(s)
</label>
</div>
<div class="form-check">
<input class="form-check-input" type="radio" name="radioOptions" value="I want more information" id="information">
<label class="form-check-label" for="information">
I would like an Information Package
</label>
</div>
<div class="form-check">
<input class="form-check-input" type="radio" name="radioOptions" value="I want to book training" id="book-training">
<label class="form-check-label" for="book-training">
I want to Book Training
</label>
</div>
</div>
<div class="form-group col-9 col-md-8 col-lg-10 training-type-options">
<label for="inputTrainingType">Please select which type of training you're interested in</label>
<select id="inputTrainingType" class="form-control">
<option>...</option>
<option>Individual</option>
<option>Group</option>
<option>Team</option>
</select>
</div>
</div>
</div>
<div class="form-group col-lg-4 col-sm-12 contact-details">
<h3>2. Contact Details</h3>
<div class="form-group row justify-content-center contact-details-row">
<div class="col-9 col-md-8 col-lg-10">
<label for="fullname">Full Name*: </label>
<input type="text" class="form-control" id="fullname" required>
</div>
</div>
<div class="form-group row justify-content-center contact-details-row">
<div class="col-9 col-md-8 col-lg-10">
<label for="email">Email*: </label>
<input type="email" class="form-control" id="email" required>
</div>
</div>
<div class="form-group row justify-content-center contact-details-row">
<div class="col-9 col-md-8 col-lg-10">
<label for="phone">Phone: </label>
<input type="text" class="form-control" id="phone">
</div>
</div>
</div>
<div class="form-group col-lg-4 col-sm-12 additional-info">
<h3>3. Additional Information</h3>
<p>Please provide any other relevant information concerning your inquiry</p>
<div class="form-group row justify-content-center">
<div class="col-9 col-md-8 col-lg-10">
<textarea class="form-control" rows="5" id="additionalinfo"></textarea>
</div>
</div>
<button type="submit" class="btn btn-secondary">Submit</button>
</div>
</div>
</div>
</form>
</section>
<!-- Footer -->
<footer>
<div class="container-fluid bg-dark">
<div class="row justify-content-sm-between">
<div class="col-sm-4 footer-logo">
<h5>SMART Soccer <span><i class="fas fa-brain"></i><i class="fas fa-futbol"></i></span></h5>
<p class="inline-block">A service provided by Gustaf Ljungwaldh, an experienced football coach utilizing SMART goal setting methodology</p>
</div>
<div class="col-sm-4">
<h5>Social Media</h5>
<ul class="list-inline social-links">
<li class="list-inline-item">
<a target="_blank" href="https://www.facebook.com/">
<i class="fab fa-facebook" aria-hidden="true"></i>
<span class="sr-only">Facebook</span>
</a>
</li>
<li class="list-inline-item">
<a target="_blank" href="https://www.instagram.com/">
<i class="fab fa-instagram"></i>
<span class="sr-only">Instagram</span>
</a>
</li>
<li class="list-inline-item">
<a target="_blank" href="https://www.youtube.com/">
<i class="fab fa-youtube" aria-hidden="true"></i>
<span class="sr-only">YouTube</span>
</a>
</li>
<li class="list-inline-item">
<a target="_blank" href="https://twitter.com/">
<i class="fab fa-twitter" aria-hidden="true"></i>
<span class="sr-only">Twitter</span>
</a>
</li>
</ul>
</div>
</div>
</div>
</footer>
<!-- Javascript, enabling navbar -->
<script src="https://code.jquery.com/jquery-3.4.1.slim.min.js" integrity="sha384-J6qa4849blE2+poT4WnyKhv5vZF5SrPo0iEjwBvKU7imGFAV0wwj1yYfoRSJoZ+n" crossorigin="anonymous">
</script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/umd/popper.min.js" integrity="sha384-Q6E9RHvbIyZFJoft+2mJbHaEWldlvI9IOYy5n3zV9zzTtmI3UksdQRVvoxMfooAo" crossorigin="anonymous">
</script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/js/bootstrap.min.js" integrity="sha384-wfSDF2E50Y2D1uUdj0O3uMBJnjuUD4Ih7YwaYd1iqfktj0Uod8GCExl3Og8ifwB6" crossorigin="anonymous">
</script>
</body>
</html>