generated from Code-Institute-Org/gitpod-full-template
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathform.html
178 lines (170 loc) · 8.93 KB
/
form.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
<!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">
<title>Anlief | Ecological Consultancy</title>
<!--Bootstrap links-->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css"
integrity="sha384-zCbKRCUGaJDkqS1kPbPd7TveP5iyJE0EjAuZQTgFLD2ylzuqKfdKlfG/eSrtxUkn" crossorigin="anonymous">
<!--Link to CSS-->
<link rel="stylesheet" type="text/css" href="assets/css/style.css">
<!--Fonts-->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Satisfy&family=Spline+Sans&display=swap" rel="stylesheet">
<!-- Favicon -->
<link rel="icon" href="assets/media/favicon.png" type="image/x-icon">
</head>
<body>
<!-- Navbar -->
<nav class="navbar sticky-top navbar-expand-sm navbar-light" style="background-color: #f6fbee;">
<a class="navbar-brand" id="logo">Anlief</a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarNavDropdown"
aria-controls="navbarNavDropdown" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarNavDropdown">
<ul class="navbar-nav">
<li class="nav-item mr-2">
<a class="nav-link" href="index.html">Home</a>
</li>
<li class="nav-item mr-2">
<a class="nav-link" href="legislation.html">When You'll Need Us</a>
</li>
<li class="nav-item mr-2">
<a class="nav-link" href="team.html">Meet The Team</a>
</li>
<li class="nav-item dropdown mr-2">
<a class="nav-link dropdown-toggle" href="services.html" id="navbarDropdownMenuLink" role="button"
data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
Ecology Services
</a>
<div class="dropdown-menu" aria-labelledby="navbarDropdownMenuLink">
<a class="dropdown-item" href="services.html#protected-species-surveys">Protected Species
Surveys</a>
<a class="dropdown-item" href="services.html#vegetation-surveys">Vegetation Surveys</a>
<a class="dropdown-item" href="services.html#tree-surveys">Tree Surveys</a>
<a class="dropdown-item" href="services.html#ecological-impact-assessment">Ecological Impact
Assessment</a>
</div>
</li>
<li class="nav-item active mr-2">
<a class="nav-link" href="form.html">Book Us<span class="sr-only">(current)</span></a>
</li>
</ul>
</div>
</nav>
<article class="container">
<h2>Contact Us</h2>
<!-- Form -->
<form action="confirmation.html">
<!-- Name -->
<div class="row">
<div class="col">
<label for="fname" class="lg-lab">First Name <span>*</span></label>
<input type="text" class="form-control" placeholder="Enter name" id="fname" required>
</div>
<div class="col">
<label for="lname" class="lg-lab">Last Name <span>*</span></label>
<input type="text" class="form-control" placeholder="Enter name" id="lname" required>
</div>
</div>
<!-- Email -->
<div class="form-group">
<label for="exampleInputEmail1" class="lg-lab">Email address <span>*</span></label>
<input type="email" class="form-control" id="exampleInputEmail1" aria-describedby="emailHelp"
placeholder="Enter email" required>
<small id="emailHelp" class="form-text text-muted">We'll never share your email with anyone
else.</small>
</div>
<!-- Survey Type -->
<fieldset id="survey-type">
<legend>Which ecological service(s) do you require?</legend>
<div class="form-check">
<input class="form-check-input" type="checkbox" value="prot-sp-survey" name="survey"
id="protected-spec-check">
<label class="form-check-label" for="protected-spec-check">
Protected Species Survey
</label>
</div>
<div class="form-check">
<input class="form-check-input" type="checkbox" value="veg-survey" name="survey"
id="vegetation-check">
<label class="form-check-label" for="vegetation-check">
Vegetation Survey
</label>
</div>
<div class="form-check">
<input class="form-check-input" type="checkbox" value="tree-survey" name="survey" id="tree-check">
<label class="form-check-label" for="tree-check">
Tree Survey
</label>
</div>
<div class="form-check">
<input class="form-check-input" type="checkbox" value="eia" name="survey" id="eia-check">
<label class="form-check-label" for="eia-check">
Ecological Impact Assessment
</label>
</div>
</fieldset>
<br>
<!-- Job Description -->
<div class="form-group">
<label for="job-description" class="lg-lab">Please describe in more detail about your project and the
ecological
services you
require: <span>*</span></label>
<textarea class="form-control" id="job-description" rows="5" placeholder="Description"
required></textarea>
</div>
<!-- Upload files -->
<div class="form-group">
<label for="exampleFormControlFile1" class="lg-lab">Upload any site photographs and existing/proposed
architectural
plans</label>
<input type="file" class="form-control-file" id="exampleFormControlFile1">
<small id="Upload-help" class="form-text text-muted">
This will help us give a more accurate quotation.
</small>
</div>
<!-- Consent Check -->
<div class="form-group form-check">
<input type="checkbox" class="form-check-input" id="consent-check" required>
<label class="form-check-label" for="consent-check">I consent to being contacted by Anlief
<span>*</span></label>
</div>
<!-- Required Fields -->
<span id="required-fields" class="form-text">
<small>* required fields
</small></span>
<!-- Submit -->
<button type="submit" class="btn btn-outline-success" id="submit-btn">Submit</button>
</form>
</article>
<!-- Footer -->
<footer class="page-footer font-small" style="background-color: #f6fbee;">
<!-- Social media links -->
<ul class="text-center py-3 social-networks">
<li><a href="https://www.facebook.com/" target="_blank"><i class="fab fa-facebook-square"></i></a></li>
<li><a href="https://www.instagram.com/" target="_blank"><i class="fab fa-instagram-square"></i></a></li>
<li><a href="https://www.twitter.com/" target="_blank"><i class="fab fa-twitter-square"></i></a></li>
<li><a href="https://www.youtube.com/" target="_blank"><i class="fab fa-youtube-square"></i></a></li>
</ul>
<!-- Copyright -->
<div class="footer-copyright text-center py-3">© 2021 Copyright:
<a href="https://antonia-white.github.io/anlief-ecological-consultancy/">Anlief.com</a>
</div>
</footer>
<!-- Bootstrap scripts -->
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/jquery.slim.min.js"
integrity="sha384-DfXdz2htPH0lsSSs5nCTpuj/zy4C+OGpamoFVy38MVBnE+IbbVYUew+OrCXaRkfj" crossorigin="anonymous">
</script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"
integrity="sha384-fQybjgWLrvvRgtW6bFlB7jaZrFsaBXjsOMm/tB9LTS58ONXgqbR9W8oWht/amnpF" crossorigin="anonymous">
</script>
<!-- Font Awesome Script -->
<script src="https://kit.fontawesome.com/f82ec574c3.js" crossorigin="anonymous"></script>
</body>
</html>