-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
45 lines (44 loc) · 1.99 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
45
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>d2lobby</title>
<link rel="icon" href="favicon.svg" type="image/svg+xml">
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-F3w7mX95PdgyTmZZMECAngseQB83DfGTowi0iMjiWaeVhAn4FJkqJByhZMI3AhiU" crossorigin="anonymous">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/font/bootstrap-icons.css">
<script src="d2lobby.js"></script>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-WXYBEDL47Q"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-WXYBEDL47Q');
</script>
</head>
<body>
<div class="px-4 py-5 mt-4 text-center">
<h1 class="display-5 fw-bold">😈 d2lobby 😈</h1>
</div>
<div class="container">
<div class="row gy-3">
<div id="alertBox" class="offset-lg-4 col-lg-4 offset-2 col-8 alert alert-success fade">"<span id="alertBoxText"></span>" copied to clipboard!</div>
<div class="offset-lg-4 col-lg-3 offset-2 col-5">
<label for="prefixIn">Prefix</label>
<input class="form-control" id="prefixIn"/>
</div>
<div class="col-lg-1 col-3">
<label for="numberIn">Number</label>
<input class="form-control" type="number" value="1" id="numberIn"/>
</div>
<div class="offset-lg-4 col-lg-4 offset-2 col-8">
<button type="button" class="form-control btn btn-primary btn-lg px-4 gap-3" id="copyBtn"><i class="bi bi-clipboard"> </i><span id="copyBtnText">Click to copy.</span></button>
</div>
</div>
</div>
<div class="fixed-bottom">
<a href="https://github.com/strbean/d2lobby" class="btn btn-dark rounded-circle fs-1 bi bi-github position-fixed end-0 bottom-0 m-3"></a>
</div>
</body>
</html>