-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
112 lines (100 loc) · 4.55 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
<!doctype html>
<html lang="en">
<head>
<title>PMG - Password Manager Generator</title>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="description" content="Password Manager Generator">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="icon" href="./img/pmg-logo.png" />
<link rel="stylesheet" href="./css/style.css" />
<link rel="stylesheet" href="./lib/jquery-ui/jquery-ui-1.10.4.custom/css/ui-lightness/jquery-ui-1.10.4.custom.min.css" />
<link rel="stylesheet" href="./lib/greywyvern/keyboard/keyboard.css" />
<script src="./lib/modernizr/modernizr-2.7.1.min.js"></script>
</head>
<body>
<!--[if lt IE 8]>
<p class="browsehappy">You are using an <strong>outdated</strong> browser. Please <a href="http://browsehappy.com/">upgrade your browser</a> to improve your experience.</p>
<![endif]-->
<header>
<h1><a href="http://pasmangen.github.io/">PMG<br/>Password Manager Generator</a></h1>
<h2>The easy way to manage your passwords</h2>
</header>
<nav>
<a href="card.html">Generate Your Codes Card</a>
</nav>
<section class="main" id="calculateCoordenates">
<form>
<fieldset>
<label for="account">Account Name:</label>
<input type="text" name="account" id="account" placeholder="e.g.: Twitter"/>
</fieldset>
<fieldset>
<label for="user">User Name:</label>
<input type="text" name="user" id="user" placeholder="e.g.: HackathonLovers"/>
</fieldset>
<fieldset>
<a class="btn" href="#" id="coordenates">
<span class="icon-key"></span>Calculate Coordinate</a>
</fieldset>
</form>
</section>
<section class="main" id="generatePassword" style="display: none">
<form>
<fieldset>
<label id="codeLabel" for="code">Code of cell </label>
<input type="password" name="code" id="code"
class="keyboardInput" placeholder="Enter your card code"/>
</fieldset>
<fieldset>
<label for="password">Master Password:</label>
<input type="password" name="password" id="password"
class="keyboardInput" placeholder="Enter your master code"/>
</fieldset>
<fieldset>
<a class="btn" href="#" id="generate">
<span class="icon-lock"></span>Generate Password</a>
</fieldset>
</form>
</section>
<section class="main" id="viewPassword" style="display: none">
<form>
<fieldset>
<label for="code">Generated Password:</label>
</fieldset>
<fieldset>
<span id="genpass"></span><br /><br />
<a class="btn" href="#" id="copy-button"
data-clipboard-target="#genpass">
<span class="icon-floppy"></span>Copy to clipboard</a>
</fieldset>
</form>
</section>
<footer>
<p> <strong>
<a href="http://pasmangen.github.io/doc/en/pmg.html"
alt="What is PMG?">What is PMG?</a> |
<a href="http://github.com/pasmangen/pasmangen.github.io" alt="Fork me on GitHub">Fork me on GitHub</a>
</strong> </p>
<p> © 2014 - Hackalovers Team </p>
</footer>
<!--script src="//localhost:35729/livereload.js"></script-->
<script src="./lib/jquery/jquery-2.1.0.min.js"></script>
<script src="./lib/jquery-ui/jquery-ui-1.10.4.custom/js/jquery-ui-1.10.4.custom.min.js"></script>
<!--script src="./lib/jquery.clipboard/jquery.clipboard.js"></script-->
<script src="./lib/greywyvern/keyboard/keyboard.js"></script>
<script src="./lib/jssha/jsSHA-1.5.0/src/sha512.js"></script>
<script src="./lib/clipboard.js/dist/clipboard.min.js"></script>
<script src="./js/hash-wrapper.js"></script>
<script src="./js/normalize.js"></script>
<script src="./js/pmg.js"></script>
<!--script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-49507593-1', 'pasmangen.github.io');
ga('send', 'pageview');
</script-->
</body>
</html>