-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
44 lines (44 loc) · 1.32 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
<!doctype html>
<html>
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=500, initial-scale=1" />
<title>Session Clone</title>
<link rel="stylesheet" href="style.css" />
<link
href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css"
rel="stylesheet"
/>
</head>
<body class="bg-dark">
<div class="container p-3">
<div class="row" id="alerts"></div>
<div class="row">
<img src="https://www.petroly.co/header-plain.svg" alt="Petroly.co" />
</div>
<div class="row text-white fs-6">
<ul>
<li>You must have Petroly.co and Banner opened and logged in.</li>
<li>The active tab must be the Petorly one.</li>
</ul>
</div>
<div class="row mb-4 mt-5">
<div class="col position-relative">
<button
class="btn btn-primary position-absolute top-50 start-50 translate-middle"
id="clone-btn"
>
Clone Session
</button>
</div>
<script src="script.js"></script>
</div>
<div class="row mb-4 mt-5">
<button id="terms-btn" class="btn btn-secondary">
Just show hidden terms
</button>
</div>
</div>
<script src="bootstrap.bundle.min.js"></script>
</body>
</html>