-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
37 lines (35 loc) · 1.75 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
<html>
<head>
<title>PrntScr Browser</title>
<meta name="referrer" content="no-referrer" />
<script
src="https://code.jquery.com/jquery-3.3.1.min.js"
integrity="sha256-FgpCb/KJQlLNfOu91ta32o/NMZxltwRo8QtmkMRdAu8="
crossorigin="anonymous"></script>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/css/bootstrap.min.css" integrity="sha384-MCw98/SFnGE8fJT3GXwEOngsV7Zt27NXFoaoApmYm81iuXoPkFOJwJ8ERdknLPMO" crossorigin="anonymous">
<script src="script.js"></script>
</head>
<body>
<div class="container">
<div class="row mt-5">
<div class="col-4 offset-3">
<input type="text" placeholder="Starting URL" name="start-url" class="form-control"/>
</div>
<div class="col-4">
<button type="button" onclick="loadUrl();" class="btn btn-primary">Go!</button>
<button type="button" onclick="randomPage();" class="btn btn-danger">Random :)</button>
<span id="button-pack" style="display: none">
<button type="button" onclick="loadPrev();" class="btn btn-success">(P)rev</button>
<button type="button" onclick="loadNext();" class="btn btn-success">(N)ext</button>
</span>
</div>
</div>
<div class="alert mt-2" id="log" style="display: none"></div>
<div class="row mt-5">
<div class="col-12 text-center" id="content-container">
Paste your random https://prnt.sc/ URL in the input above and press Go!
</div>
</div>
</div>
</body>
</html>