-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathexpired.html
130 lines (107 loc) · 3.62 KB
/
expired.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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Expired Investment</title>
<link rel="icon" type="image/x-icon" href="prime-logo.png">
<link rel="stylesheet" href="common-style.css">
<link rel="stylesheet" href="profile.css">
<link rel='stylesheet' href='https://cdn-uicons.flaticon.com/uicons-regular-rounded/css/uicons-regular-rounded.css'>
<link rel="stylesheet" href="https://fonts.googleapis.com/icon?family=Material+Icons" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/izitoast/1.4.0/css/iziToast.min.css" integrity="sha512-O03ntXoVqaGUTAeAmvQ2YSzkCvclZEcPQu1eqloPaHfJ5RuNGiS4l+3duaidD801P50J28EHyonCV06CUlTSag==" crossorigin="anonymous" referrerpolicy="no-referrer" />
<script src="https://cdnjs.cloudflare.com/ajax/libs/izitoast/1.4.0/js/iziToast.min.js" integrity="sha512-Zq9o+E00xhhR/7vJ49mxFNJ0KQw1E1TMWkPTxrWcnpfEFDEXgUiwJHIKit93EW/XxE31HSI5GEOW06G6BF1AtA==" crossorigin="anonymous" referrerpolicy="no-referrer"></script>
<style>
main{
background: rgb(30,30,30);
padding: 1em;
padding-top: 4.5rem;
}
.no_event {
background-image: url("nodata.png");
background-repeat: no-repeat;
background-color: transparent;
background-size: cover;
background-position: center;
width: 100%;
height: 40vh;
position: relative;
border-radius: 30px;
}
.no_event span {
position: absolute;
top: 5px;
left: 50%;
transform: translate(-50%);
font-size: .85rem;
font-weight: 300;
color: rgba(255,255,255,0.6);
}
.record-container{
display: none;
}
.withdraw-Record{
background: antiquewhite;
min-height: 4rem;
width: 100%;
border-radius: 20px;
padding: 10px;
margin-bottom: 10px;
}
</style>
</head>
<body id="body" onmousedown="return false" onselectstart="return false">
<header id="header">
<nav>
<div class="nav current">
<i id="fi" class="fi fi-rr-angle-small-left"></i>
<h1>Expired</h1>
<i id="fi-bell" class="fi fi-rr-bell"></i>
</div>
</nav>
</header>
<main>
<div class="no_event">
<span>No available data</span>
</div>
<div class="record-container">
<div class="withdraw-Record_1"></div>
<div class="withdraw-Record"></div>
<div class="withdraw-Record"></div>
<div class="withdraw-Record"></div>
<div class="withdraw-Record"></div>
<div class="withdraw-Record"></div>
<div class="withdraw-Record"></div>
</div>
</main>
<section class="horizontal-nav">
<div onclick="window.location.href='index.html'">
<i class="fi fi-rr-home"></i>
<h5>HOME</h5>
</div>
<div onclick="window.location.href='product.html'">
<i class="fi fi-rr-box-open"></i>
<h5>PRODUCT</h5>
</div>
<div onclick="window.location.href='deposit.html'">
<i class="fi fi-rr-money-from-bracket"></i>
<h5>DEPOSIT</h5>
</div>
<div onclick="window.location.href='reward.html'">
<i class="fi fi-rr-trophy-star"></i>
<h5>REWARD</h5>
</div>
<div onclick="window.location.href='profile.html'">
<i class="fi fi-rr-circle-user"></i>
<h5>PROFILE</h5>
</div>
</section>
<div class="card card-3">
<h5>Login first!</h5>
<div class="loader"></div>
</div>
<!-- <script src="main.js"></script>-->
<script src="app.js"></script>
<script src="illegal-user.js"></script>
</body>
</html>