This repository was archived by the owner on Feb 20, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathevent.html
More file actions
39 lines (39 loc) · 1.41 KB
/
event.html
File metadata and controls
39 lines (39 loc) · 1.41 KB
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 lang="en">
<head>
<link href="bower_components/bootstrap/dist/css/bootstrap.min.css" rel="stylesheet"/>
<link href="bower_components/font-awesome/css/font-awesome.min.css" rel="stylesheet"/>
<meta charset="UTF-8">
<title>Title</title>
</head>
<body>
<div class="container" style="max-width: 700px;">
<div class="row">
<div class="col-xs-12">
<div class="list-group">
<a class="list-group-item active">
<h4 class="list-group-item-heading"> whatever</h4>
<p class="list-group-item-text">What what whatasdfdsf</p>
</a>
<a class="list-group-item">
<h4 class="list-group-item-heading"> whatever 1</h4>
<p class="list-group-item-text">Wdsafdsafhat what whatasdfdsf</p>
</a>
<a class="list-group-item">
<h4 class="list-group-item-heading"> whatever 2</h4>
<p class="list-group-item-text">What what whatasdfdsffdsadsaf</p>
</a>
</div>
</div>
</div>
<div class="row">
<div class="col-xs-6">
<button class="btn btn-danger btn-block">Complete Event</button>
</div>
<div class="col-xs-6">
<button class="btn btn-primary btn-block">Continue</button>
</div>
</div>
</div>
</body>
</html>