-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
40 lines (37 loc) · 1.61 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
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>Ploki poki - random password generator</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="./style.css" type="text/css">
<link rel="shortcut icon" href="./favicon.png" type="image/png">
<link rel="preload" href="assets/droidsansmono.ttf" as="font" crossorigin="anonymous">
<link rel="preload" href="assets/opensans.ttf" as="font" crossorigin="anonymous">
</head>
<body>
<div id="forkme"><span><a href="https://github.com/romuald/plokiploki">Fork me on GitHub</a></span></div>
<p id="intro">
Ploki ploki is a client side random password generator (for lazy folks)
</p>
<p id="blabla">
Password generation is done via your browser only, nothing is done using a remote server, and no external provider is used.<br>
If you don't trust this page (I wouldn't), you can always <a href="https://github.com/romuald/plokiploki">fork it on GitHub</a> and use it locally.
</p>
<form style="display: none">
<input id="plokipass" type="text">
<div id="copy"><a href="#">copy</a><b style="display: none">copied</b></div>
<div id="options">
<span>Generate a <select id="password-length"></select> characters password,</span>
<span>with <select id="special-length"></select> special characters</span>
</div>
<input type="submit" value="Another!" id="another">
</form>
<noscript>
<p id="noscript">
This generator only works with Javascript, but it is not currently enabled in your browser.
</p>
</noscript>
<script src="./ploki.js"></script>
</body>
</html>