generated from Code-Institute-Org/gitpod-full-template
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathevents.html
174 lines (158 loc) · 7.07 KB
/
events.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!------------------------------------------------------------------------------------------script importing external functions-->
<script src="https://code.jquery.com/jquery-3.5.1.slim.min.js" integrity="sha384-DfXdz2htPH0lsSSs5nCTpuj/zy4C+OGpamoFVy38MVBnE+IbbVYUew+OrCXaRkfj" crossorigin="anonymous"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.5.0/js/bootstrap.min.js" integrity="sha384-OgVRvuATP1z7JjHLkuOU7Xw704+h835Lr+6QL9UvYjZE3Ipu6Tp75j7Bh/kR0JKI" crossorigin="anonymous"></script>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.0/css/bootstrap.min.css" integrity="sha384-9aIt2nRpC12Uk9gS9baDl411NQApFmC26EwAOH8WgZl5MYYxFfc+NcPb1dKGj7Sk" crossorigin="anonymous">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css" type="text/css"/>
<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" href="assets/css/style.css" type="text/css"/>
<!--------------------------------------------------------------------------------------------e-mail js function-->
<script type="text/javascript" src="https://cdn.jsdelivr.net/npm/emailjs-com@2.3.2/dist/email.min.js"></script>
<script type="text/javascript">
(function(){
emailjs.init("user_iezLnx0DcuKeB2NUx8BAK");
})();
</script>
<title>Event-Planner</title>
</head>
<body>
<header>
<!--------------------------------------------------------------------------------------------------------Navigation Bar---->
<nav class="navbar navbar-expand-lg navbar-light bg-light">
<a class="navbar-brand" href="index.html">Artist Watch</a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarSupportedContent" aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarSupportedContent">
<ul class="navbar-nav mr-auto">
<li class="nav-item">
<a class="nav-link" href="index.html">Home</a>
</li>
<li class="nav-item">
<a class="nav-link" href="social.html">Social<span class="sr-only"></span></a>
</li>
<li class="nav-item active">
<a class="nav-link" href="events.html">Events<span class="sr-only">(current)</span></a>
</li>
</ul>
<form class="form-inline my-2 my-lg-0">
<input class="form-control mr-sm-2" type="search" placeholder="Search Events" aria-label="Search">
<button class="btn btn-outline-success my-2 my-sm-0" type="submit">Search</button>
</form>
</div>
</nav>
</header>
<div class="container featured">
<div>
<div class="col-xs-6">
<div id="events-panel" class="panel panel-primary">
<div class="panel-heading">
<h3 class="panel-title">Events</h3>
</div>
<div class="panel-body">
<div id="events" class="list-group">
<a href="#" class="list-group-item">
<h4 class="list-group-item-heading"></h4>
<p class="list-group-item-text"></p>
<p class="venue"></p>
</a>
<a href="#" class="list-group-item">
<h4 class="list-group-item-heading"></h4>
<p class="list-group-item-text"></p>
<p class="venue"></p>
</a>
<a href="#" class="list-group-item">
<h4 class="list-group-item-heading"></h4>
<p class="list-group-item-text"></p>
<p class="venue"></p>
</a>
<a href="#" class="list-group-item">
<h4 class="list-group-item-heading"></h4>
<p class="list-group-item-text"></p>
<p class="venue"></p>
</a>
</div>
</div>
<div class="panel-footer ">
<nav aria-label="Page navigation page-left-right">
<ul class="pagination">
<li id="prev" class="prev page-item"><a class="page-link" href="#">Previous</a></li>
<li id="next" class="next page-item"><a class="page-link" href="#">Next</a></li>
</ul>
</nav>
</div>
</div>
</div>
</div>
</div>
<div id="search"></div>
<!----------------------------------------------------------------------------------------Subscribe-->
<div class="container">
<div class="row">
<div class="col featured subscribe-bar">
<div class="center-form">
<form onsubmit="return sendMail(this);">
<label for="email" class="sr-only">E-Mail</label>
<input type="text" name="email" class="form-control" id="emailaddress" placeholder="E-Mail" required>
<button type="submit" class="btn btn-primary mb-2">Subscribe!</button>
</form>
</div>
</div>
</div>
</div>
<button class="open-button" onclick="openForm()">Hi There! Click Me!</button>
<div class="form-popup" id="myForm">
<form class="form-container">
<h1>Thanks for Visiting</h1>
<label><b>Please Subscribe to the Service at the bottom of the page!</b></label>
<p> Lots of Great Content!</p>
<label><b>Event-Planner</b></label>
<p>Stay Classy :)</p>
<button type="btn" class="btn cancel" onclick="closeForm();return false">Close</button>
</form>
</div>
<!-- Footer -->
<footer class="page-footer font-small special-color-dark pt-4">
<!-- Footer Elements -->
<div class="container">
<!-- Social buttons -->
<ul class="list-unstyled list-inline social-links text-center">
<li class="list-inline-item">
<a class="btn-floating btn-fb mx-1">
<i class="fa fa-facebook-f"> </i>
</a>
</li>
<li class="list-inline-item">
<a class="btn-floating btn-tw mx-1">
<i class="fa fa-twitter"> </i>
</a>
</li>
<li class="list-inline-item">
<a class="btn-floating btn-li mx-1">
<i class="fa fa-linkedin"> </i>
</a>
</li>
<li class="list-inline-item">
<a class="btn-floating btn-li mx-1">
<i class="fa fa-youtube"> </i>
</a>
</li>
</ul>
<!-- Social buttons -->
</div>
<!-- Copyright -->
<div class="footer-copyright text-center py-3">© 2020 Copyright:
<a>Event-Planner.com</a>
</div>
<!-- Footer -->
</footer>
<script src="assets/js/sendEmail.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script>
<script src="assets/js/events.js"></script>
<script src="assets/js/contact.js"></script>
</body>
</html>