forked from SouICry/fetch
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path_history.html
More file actions
55 lines (48 loc) · 1.4 KB
/
_history.html
File metadata and controls
55 lines (48 loc) · 1.4 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
<div id="history" class="container box text-center">
<div class="row">
<div class="col-xs-12 col-md-12">
<div>
<h2 class="">Your Orders</h2>
</div>
</div>
</div>
<div class="row">
<div class="col-xs-12 col-md-6">
<h3>Pending Tickets</h3>
<ul id="yourOrders_pending_tickets" class=text-center"></ul>
</div>
<div class="col-xs-12 col-md-6">
<h3>Accepted Tickets</h3>
<ul id="yourOrders_accepted_tickets" class=text-center"></ul>
</div>
</div>
<div class="row">
<div class="col-xs-12 col-md-6">
<h3>Purchased Tickets</h3>
<ul id="yourOrders_shopped_tickets" class=text-center"></ul>
</div>
<div class="col-xs-12 col-md-6">
<h3>Delivered Tickets</h3>
<ul id="yourOrders_delivered_tickets" class=text-center"></ul>
</div>
</div>
</div>
<div class="footerBars container">
<div class="footer2"></div>
<div class="footer3"></div>
</div>
<script src="/js/_history.js"></script>
<style>
#history li {
position: relative;
font-size: 14px;
border-top: 1px solid #ededed;
font-weight: bold;
width: 100%;
line-height: 2;
}
#history li:hover {
background-color: rgba(33, 19, 0, 0.07);
cursor:pointer;
}
</style>