-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathcontact.html
More file actions
202 lines (191 loc) · 6.95 KB
/
contact.html
File metadata and controls
202 lines (191 loc) · 6.95 KB
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
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Contact</title>
<!-- favicons generated by favicon.io -->
<link
rel="apple-touch-icon"
sizes="180x180"
href="src/images/favicon/apple-touch-icon.png" />
<link
rel="icon"
type="image/png"
sizes="32x32"
href="src/images/favicon/favicon-16x16.png" />
<link
rel="icon"
type="image/png"
sizes="16x16"
href="src/images/favicon/favicon-32x32.png" />
<link rel="manifest" href="/site.webmanifest" />
<link
href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css"
rel="stylesheet"
integrity="sha384-QWTKZyjpPEjISv5WaRU9OFeRpok6YctnYmDr5pNlyT2bRjXh0JMhjY6hW+ALEwIH"
crossorigin="anonymous" />
<link
rel="stylesheet"
href="https://cdn.jsdelivr.net/npm/@fortawesome/fontawesome-free@6.6.0/css/fontawesome.min.css"
integrity="sha384-NvKbDTEnL+A8F/AA5Tc5kmMLSJHUO868P+lDtTpJIeQdGYaUIuLr4lVGOEA1OcMy"
crossorigin="anonymous" />
<link rel="stylesheet" href="src/css/style.css" />
</head>
<body class="d-flex flex-column min-vh-100">
<!-- Navbar -->
<nav class="navbar navbar-expand-lg navbar-light bg-light">
<div class="container-fluid">
<img class="logo" src="src/images/logo.png" alt="logo" />
<a class="navbar-brand fw-bold fs-3" href="index.html">The Helpers</a>
<button
class="navbar-toggler"
type="button"
data-bs-toggle="collapse"
data-bs-target="#navbarNav"
aria-controls="navbarNav"
aria-expanded="false"
aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div
class="collapse navbar-collapse"
id="navbarNav"
style="background-color: #5aa8d6">
<ul class="navbar-nav">
<li class="nav-item">
<a class="nav-link" aria-current="page" href="index.html">Home</a>
</li>
<li class="nav-item">
<a class="nav-link" href="map.html">Map</a>
</li>
<li class="nav-item">
<a class="nav-link" href="get_involved.html">Get Involved</a>
</li>
<li class="nav-item">
<a class="nav-link active" href="contact.html">Contact</a>
</li>
</ul>
</div>
</div>
</nav>
<main>
<!-- Contact Form Section -->
<section id="contactPage" class="container section">
<div class="row justify-content-center">
<div class="col-12 col-md-8">
<!-- Form -->
<form
id="contactForm"
action="https://api.web3forms.com/submit"
method="POST">
<h1>Contact Us Form</h1>
<p>Please send any questions through this form.</p>
<!-- Web3Forms Data -->
<input
type="hidden"
name="access_key"
value="351aee99-8156-46f4-bdb3-2471e386e9d1" />
<input
type="hidden"
name="subject"
value="New Query from Code to Protect" />
<div class="row">
<div class="col-12 col-lg-6 mb-3">
<label for="contactName" class="form-label">Name:</label>
<input
class="form-control input-box"
id="contactName"
name="contactName"
type="text"
placeholder="Enter name."
required />
</div>
<div class="col-12 col-lg-6 mb-3">
<label for="contactEmail" class="form-label">
Email Address:
</label>
<input
class="form-control input-box"
id="contactEmail"
name="contactEmail"
type="email"
placeholder="Enter email address."
required />
</div>
<div class="col-12 col-lg-6 mb-3">
<label for="contactOnBehalf" class="form-label">
On Behalf:
</label>
<input
class="form-control input-box"
id="contactOnBehalf"
name="contactOnBehalf"
type="text"
placeholder="Enter Persons name or N/A."
required />
</div>
<div class="col-12 col-lg-6 mb-3">
<label for="contactReason" class="form-label">Reason:</label>
<input
class="form-control input-box"
id="contactReason"
name="contactReason"
type="text"
placeholder="Enter Reason Slavery / Human Trafficking"
required />
</div>
<div class="col-12 mb-3">
<label for="contactMessage" class="form-label">
Message:
</label>
<textarea
class="form-control input-box"
rows="6"
id="contactMessage"
name="contactMessage"
placeholder="Enter message."
required></textarea>
</div>
</div>
<button id="enquiryReset" type="reset" class="btn">Reset</button>
<button id="enquirySubmit" type="submit" class="btn">
Submit
</button>
</form>
</div>
</div>
</section>
</main>
<!-- Footer -->
<footer class="footer bg-light text-center text-lg-start mt-auto">
<div class="container p-4">
<div class="row">
<div class="col-lg-12">
<p class="mb-0">
<a href="team.html" class="text-decoration-none">Meet the Team</a>
</p>
<p>
Check out our project on
<a
href="https://github.com/md-ash-dot/code-to-protect"
class="text-decoration-none"
target="_blank">
<i class="fab fa-github"></i>
GitHub
</a>
</p>
</div>
</div>
</div>
<div class="text-center p-3 bg-light border-top">
This website is for educational purposes only. Information on this site
is not intended to be used as a source of legal advice.
</div>
</footer>
<script
src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/js/bootstrap.bundle.min.js"
integrity="sha384-YvpcrYf0tY3lHB60NNkmXc5s9fDVZLESaAA55NDzOxhy9GkcIdslK1eN7N6jIeHz"
crossorigin="anonymous"></script>
</body>
</html>