-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
executable file
·57 lines (54 loc) · 2.65 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/css/bootstrap.min.css" integrity="sha384-MCw98/SFnGE8fJT3GXwEOngsV7Zt27NXFoaoApmYm81iuXoPkFOJwJ8ERdknLPMO"
crossorigin="anonymous">
<link rel="stylesheet" href="https://cdn.evbstatic.com/s3-build/28813-rc2018-08-29_16.04-33b338f/js/node_modules/eventbrite_design_system/css/eds.css"
crossorigin="anonymous" />
<link rel="stylesheet" href="css/main.css">
<script src="https://code.jquery.com/jquery-3.3.1.min.js" integrity="sha256-FgpCb/KJQlLNfOu91ta32o/NMZxltwRo8QtmkMRdAu8="
crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/moment.js/2.10.3/moment.js"></script>
<script src="js/event-card.js" type="text/javascript"></script>
<script src="js/script.js" type="text/javascript"></script>
<title>ELW</title>
</head>
<body>
<header>
<div class="jumbotron">
<h2>Event List Widget</h2>
</div>
</header>
<main>
<div class="row">
<div class="col-2"></div>
<div class="col-4">
<h4>What is this?</h4>
<p>A widget to integrate multiple events at once is one of the most requested features by organizers<br><br>
When running multiple events per day or week, they want to use a widget that displays all upcoming events automatically. This is a proof of concept that allows organizers to integrate ALL of their live & public events on their website.<br>
<br>
The integration will automatically update once a new event is published - no manual touches needed!<br>
<br>Enter a organization ID to try it.</p>
<br>
<h4>Organization ID:</h4>
<input type="text" name="" id="orgId" class="input">
<!-- <h4>Location:</h4>
<input type="text" name="" id="location" class="input"> -->
<br>
<input type="button" value="go" class="btn btn-action" onclick="getevents()">
</div>
<div class="col-4">
<div id="result-header">
<h4>Preview</h4>
</div>
<div id="events"></div>
<div class='eb-link'><i><a href='http://www.eventbrite.com' target=_blank>powered by Eventbrite</a></i></div>
</div>
<div class="col-2"></div>
</div>
</main>
</body>
</html>