-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
41 lines (32 loc) · 1.16 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
<!--
_
(_)
_ ____ ____ _ ___ _ __ _ ___
| '_ \ \ /\ / / _` |/ _ \ '_ \ | / __|
| |_) \ V V / (_| | __/ | | |_| \__ \
| .__/ \_/\_/ \__, |\___|_| |_(_) |___/
| | __/ | _/ |
|_| |___/ |__/
!-->
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="initial-scale=1.0">
<meta name="viewport" content="width=device-width">
<title>PW Gen</title>
<link href="https://fonts.googleapis.com/css?family=Arvo" rel="stylesheet">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<script src="js/sha1.min.js"></script>
<script src="js/pwgen.js"></script>
<link rel="shortcut icon" href="/favicon.ico" type="image/x-icon">
<link rel="icon" href="/favicon.ico" type="image/x-icon">
<link href="css/style.css" rel="stylesheet" type="text/css">
</head>
<body>
<div class="generator"></div>
</body>
<script>
$('.generator').pwgen();
</script>
</html>