-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
66 lines (53 loc) · 1.54 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>PiPass (v1)</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/bulma/0.8.0/css/bulma.min.css">
<script src="https://code.jquery.com/jquery-3.6.0.min.js"
integrity="sha256-/xUj+3OJU5yExlq6GSYGSHk7tPXikynS7ogEvDej/m4="
crossorigin="anonymous">
</script>
<script src="pipass.js"></script>
<link rel="stylesheet" type="text/css" href="pipass.css" media="screen"/>
</head>
<body>
<section class="section">
<div class="container">
<h1>PiPass (v1)<br /><small><em>Bulk Password Automation</em></small></h1>
<p> <br />
<div class="field has-addons">
<p class="control">
<a class="button is-static" id="assetPrefix">
LAP-00
</a>
</p>
<p class="control">
<input class="input" type="number" id="assetTag" placeholder="000">
</p>
</div>
</p>
<p> <br />
<label class="checkbox">
<input type="checkbox" id="confirm" disabled>
<em>Check to activate...</em>
</label>
<div class="field is-grouped">
<p class="control">
<input class="input" type="text" id="assetPass" placeholder="ab12cd34ef56" readonly>
</p>
<p class="control">
<a class="button is-danger" id="assetPassGo" disabled>GO!</a>
</p>
</div>
</p>
<p> <br />
<div class="notification statusbox" id="lastStatus">
Pending...
</div>
</p>
</div> <!-- /container -->
</section>
</body>
</html>