-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsignup.html
403 lines (346 loc) · 13.9 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
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
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Sign Up - Christ Living Faith Miracle Ministry</title>
<!-- Bootstrap CSS -->
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/css/bootstrap.min.css" rel="stylesheet">
<link rel="icon" href="favicon.ico" type="image/x-icon">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css">
<style>
/* General Styles */
/* Custom styles for the navbar */
.navbar {
background-color: #111416; /* Set the header background color to black */
padding: 1rem 1rem; /* Adjust padding to reduce space around the navbar */
}
.navbar-brand {
margin-left: 0; /* Reset margin */
padding-left: 0; /* Remove padding */
}
.container-fluid {
padding-left: 0; /* Remove padding for the left edge */
}
/* Custom styles for the navbar toggler */
.navbar-toggler {
width: 35px; /* Adjust the width as needed */
height: 35px; /* Adjust the height as needed */
padding: 2px; /* Adjust padding to make the icon smaller */
}
/* Custom styles for the offcanvas menu */
.offcanvas {
background-color: #111416; /* Set the offcanvas background color to dark grey */
color: white; /* Set text color to white */
}
.offcanvas .nav-link {
color: white; /* Set text color of nav links in offcanvas */
}
.offcanvas .nav-link:hover {
color: #f8f9fa; /* Set hover color for nav links in offcanvas */
background-color: #333; /* Optional: Set a background color on hover for better visibility */
}
/* Custom styles for the navigation links on larger screens */
.nav-link {
color: white; /* Set nav links color to white */
transition: color 0.3s, background-color 0.3s; /* Smooth transition for hover effect */
}
.nav-link:hover {
color: black; /* Set hover color for nav links to black */
background-color: white; /* Set background color on hover to white */
border-radius: 5px; /* Optional: Add some rounding to the hover effect */
}
/* Custom styles for the Account button */
.btn-primary {
background-color: whitesmoke; /* Set button background color */
border-color: white;
color: black; /* Set button text color */
font-size: 13px;
padding: 6px;
}
.btn-primary:hover {
background-color: black; /* Set button background color on hover */
border-color: black;
color: white; /* Set button text color on hover */
}
.navbar-toggler-icon {
background-image: none; /* Remove default image */
}
.navbar-toggler-icon::before {
content: "\2630"; /* Unicode for a hamburger menu icon */
color: white; /* Change the toggler icon color to white */
font-size: 1.5rem; /* Adjust size as needed */
}
/* Custom styles for the close button of the offcanvas */
.offcanvas-header .btn-close {
filter: invert(1); /* Invert the default close button color to white */
}
.offcanvas-header .btn-close:hover {
filter: invert(0.5); /* Change the close button color on hover */
}
/*dee*/
/*dee*/
.hero {
position: relative;
height: 80vh;
overflow: hidden;
}
.hero video {
width: 100%;
height: 100%;
object-fit: cover;
}
.hero-overlay {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
text-align: center;
color: white;
}
.hero-overlay h2 {
font-size: 3rem;
margin-bottom: 1rem;
}
@media screen and (max-width: 468px) {
.hero-overlay h2 {
font-size: 1.5rem;
margin-bottom: 1rem;
margin-top: 90px;
}
.col-md-6{
font-size: 15px;
}
.container h2{
font-size: 18px;
text-align: center;
}
}
.hero-overlay p {
font-size: 1.25rem;
margin-bottom: 2rem;
}
.btn {
background-color: rgb(255, 255, 255);
color: rgb(0, 0, 0);
border: none;
}
.btn:hover {
background-color: black;
color: white;
}
footer {
background-color: #111416;
padding: 1rem 0;
color: #ffffff;
}
.footer-row {
display: flex;
flex-wrap: wrap;
justify-content: space-between;
}
.footer-column {
flex: 1;
margin: 10px;
}
.footer-column h3 {
border-bottom: 2px solid #007bff;
padding-bottom: 0.5rem;
margin-bottom: 1rem;
}
.footer-bottom {
background-color: #111416;
padding: 1rem;
text-align: center;
}
.social-media a img {
width: 30px;
height: 30px;
margin-right: 10px;
}
.btn-primary {
background-color: whitesmoke;
color: black;
}
.btn-primary:hover {
background-color: black;
border-color: black;
}
/* Account Form */
/* General Styles */
h2.account-heading-2 {
text-align: center;
font-size: 2.5rem;
font-weight: bold;
color: #111416;
margin-bottom: 1.5rem;
text-transform: uppercase;
letter-spacing: 1px;
}
/* Account Section Styles */
/* Link to Login */
.already-member {
text-align: center;
margin-top: 1.5rem;
font-size: 1.5rem;
}
.already-member a {
color: #007bff;
text-decoration: none;
font-weight: 500;
}
.already-member a:hover {
text-decoration: underline;
}
</style>
</head>
<body>
<!-- Header Section -->
<nav class="navbar navbar-expand-lg fixed-top">
<div class="container-fluid">
<a class="navbar-brand" href="index.html">
<img src="clfmm.png" alt="Logo" width="30" height="30">
</a>
<!-- Toggler for smaller screens -->
<button class="navbar-toggler d-lg-none" type="button" data-bs-toggle="offcanvas" data-bs-target="#offcanvasNavbar" aria-controls="offcanvasNavbar" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<!-- Navbar items for larger screens -->
<div class="collapse navbar-collapse d-none d-lg-flex" id="navbarNav">
<ul class="navbar-nav mx-auto">
<li class="nav-item">
<a class="nav-link mx-3" aria-current="page" href="index.html" >Home</a>
</li>
<li class="nav-item">
<a class="nav-link mx-3" href="about.html">About</a>
</li>
<li class="nav-item">
<a class="nav-link mx-3" href="service.html">Service</a>
</li>
<li class="nav-item">
<a class="nav-link mx-3" href="ministries.html">Ministries</a>
</li>
<li class="nav-item">
<a class="nav-link mx-3" href="contact.html">Contact</a>
</li>
<li class="nav-item">
<a class="nav-link mx-3" href="sermons.html">Sermon</a>
</li>
<li class="nav-item">
<a class="nav-link mx-3" href="events.html">Event</a>
</li>
<li class="nav-item">
<a class="nav-link mx-3" href="donations.html">Giving/Donations</a>
</li>
</ul>
<div class="d-flex align-items-center ms-auto">
<a href="signup.html" class="btn btn-primary">Account</a>
</div>
</div>
<!-- Offcanvas for smaller screens -->
<div class="offcanvas offcanvas-end d-lg-none" tabindex="-1" id="offcanvasNavbar" aria-labelledby="offcanvasNavbarLabel">
<div class="offcanvas-header">
<h5 class="offcanvas-title" id="offcanvasNavbarLabel">Menu</h5>
<button type="button" class="btn-close" data-bs-dismiss="offcanvas" aria-label="Close"></button>
</div>
<div class="offcanvas-body">
<ul class="navbar-nav justify-content-end flex-grow-1 pe-3">
<li class="nav-item">
<a class="nav-link mx-3" aria-current="page" href="index.html">Home</a> </li>
<li class="nav-item">
<a class="nav-link" href="about.html">About</a>
</li>
<li class="nav-item">
<a class="nav-link" href="service.html">Service</a>
</li>
<li class="nav-item">
<a class="nav-link" href="ministries.html">Ministries</a>
</li>
<li class="nav-item">
<a class="nav-link" href="contact.html">Contact</a>
</li>
<li class="nav-item">
<a class="nav-link" href="sermons.html">Sermon</a>
</li>
<li class="nav-item">
<a class="nav-link" href="events.html">Event</a>
</li>
<li class="nav-item">
<a class="nav-link" href="donations.html">Giving/Donations</a>
</li>
</ul>
<div class="d-flex justify-content-end mt-3">
<a href="signup.html" class="btn btn-primary">Account</a>
</div>
</div>
</div>
</div>
</nav>
<!-- Account Form -->
<!-- Contact Page -->
<!-- Centered Google Form Section -->
<section id="google-form-section" class="py-5 bg-light">
<div class="container">
<div class="row justify-content-center">
<div class="col-lg-8 text-center">
<h2 class="display-4 fw-bold text-primary mb-4" style="margin-top: 5rem;">Signup Form</h2>
<p class="lead text-muted mb-5">We value your visit! Please fill out the form below.</p>
</div>
</div>
<div class="row justify-content-center">
<div class="col-md-8">
<!-- Center the iframe here -->
<div class="d-flex justify-content-center">
<iframe src="https://docs.google.com/forms/d/e/1FAIpQLScagX90thjCEorv2-OY7-ur9-_yMbHmDuCUisU3Qv0omoRWXw/viewform?embedded=true" width="9500" height="800" frameborder="0" marginheight="0" marginwidth="0">Loading…</iframe>
</div>
</div>
</div>
</div>
</section>
<!-- Footer Section -->
<footer style="background-color: #111416;">
<div class="container">
<div class="row footer-row">
<div class="col-md-3 footer-column">
<h3>About Us</h3>
<p>Christ Living Faith Miracle Ministry is dedicated to spreading the love and teachings of Jesus Christ. We are committed to our local community and beyond.</p>
</div>
<div class="col-md-3 footer-column">
<h3>Quick Links</h3>
<ul class="list-unstyled">
<li><a href="index.html">Home</a></li>
<li><a href="about.html">About Us</a></li>
<li><a href="service.html">Services</a></li>
<li><a href="ministries.html">Ministries</a></li>
<li><a href="sermons.html">Sermons</a></li>
<li><a href="events.html">Events</a></li>
<li><a href="donations.html">Giving/Donations</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
</div>
<div class="col-md-3 footer-column">
<h3>Contact Us</h3>
<p>Briscoe Road, Mempeasem-Down Sekondi-Takoradi</p>
<p><strong>Phone:</strong> <a href="tel:+233542367766">+233 54 236 7766</a></p>
<p><strong>Email:</strong> <a href="mailto:clfmm102@gmail.com">clfmm102@gmail.com</a></p>
</div>
<div class="col-md-3 footer-column">
<h3>Follow Us</h3>
<div class="social-media">
<a href="https://www.facebook.com/clfmm?mibextid=ZbWKwL"><img src="facebook-icon.png" alt="Facebook"></a>
<a href="#"><img src="youtube-icon.png" alt="YouTube"></a>
</div>
</div>
</div>
<div class="footer-bottom">
<p>© 2024 Christ Living Faith Miracle Ministry. All rights reserved.</p>
</div>
</div>
</footer>
<!-- Bootstrap JS and dependencies -->
<script src="https://cdn.jsdelivr.net/npm/@popperjs/core@2.11.7/dist/umd/popper.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/js/bootstrap.min.js"></script>
<!-- Optional: Custom JavaScript -->
<script src="script.js"></script>
</body>
</html>