-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
39 lines (36 loc) · 1.15 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
<!DOCTYPE html>
<html>
<head>
</style>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.0/jquery.min.js"></script>
<script src="js/jquery.modal.js" type="text/javascript" charset="utf-8"></script>
<link rel="stylesheet" href="css/jquery.modal.css" type="text/css" media="screen" />
<link rel="stylesheet" href="css/style.css" type="text/css" media="screen" />
</head>
<body>
<!-- Modal HTML embedded directly into document -->
<div id="modal" style="display:none;">
<div class="title">Attendee status</div>
<div class="photo">
<img src="img/comment.png"/>
<img src="img/photo.png"/>
<img src="img/flag.png"/>
</div>
<div class="status">Pending</div>
<div class="name">Matthew Benton</div>
<div class="position">
CTA
<br>SCT
<br><i>Managing Director</i>
</div>
<hr>
<div class="buttons">
<button class="btn btn-green">Accept</button>
<button class="btn btn-green">Decline</button>
<button class="btn btn-green">Waitlist</button>
</div>
</div>
<!-- Link to open the modal -->
<p><a href="#modal" rel="modal:open">Open Modal</a></p>
</body>
</html>