-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathnewsletter.html
75 lines (74 loc) · 2.17 KB
/
newsletter.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width" />
<title>Friends of Cherry Valley National Wildlife Refuge</title>
<link href="styles.css" rel="stylesheet" type="text/css" />
<link
href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css"
rel="stylesheet"
integrity="sha384-QWTKZyjpPEjISv5WaRU9OFeRpok6YctnYmDr5pNlyT2bRjXh0JMhjY6hW+ALEwIH"
crossorigin="anonymous" />
<script src="https://code.jquery.com/jquery-1.10.2.js"></script>
</head>
<body>
<script src="script.js"></script>
<script
src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"
integrity="sha384-YvpcrYf0tY3lHB60NNkmXc5s9fDVZLESaAA55NDzOxhy9GkcIdslK1eN7N6jIeHz"
crossorigin="anonymous"></script>
<div id="nav-placeholder"></div>
<main id="newsletter">
<div class="overlay">
<div class="container">
<h1>Upcoming Events</h1>
<img
src="media/WinterRaptorEvent.jpg"
alt="Newsletter Image"
id="newsletterImage" />
<div id="newsForm" class="container text-center align-center border">
<h2>Subscribe to our newsletter!</h2>
<p>
Our newsletter is for our community to get early
access to public events!
</p>
<form id="newsletter-form" method="POST">
<div class="mb-3">
<label for="name" class="form-label"
>Name</label
>
<input
type="text"
class="form-control"
id="name"
name="name"
required />
</div>
<div class="mb-3">
<label for="email" class="form-label"
>Email Address</label
>
<input
type="email"
class="form-control"
id="email"
name="email"
required />
</div>
<button type="submit" class="btn btn-primary">
Submit
</button>
</form>
<div class="confirmation" id="confirmation">
<h2>Thank you for subscribing!</h2>
</div>
</div>
<div id="calendar"></div>
</div>
</div>
</main>
<script src="formSubmission.js"></script>
<div id="footer-placeholder"></div>
</body>
</html>