-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
65 lines (52 loc) · 2.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
<!DOCTYPE html>
<html lang="en">
<head>
<title>HashPass</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no">
<!-- Material Design fonts -->
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Roboto:300,400,500,700" type="text/css">
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<!-- Bootstrap -->
<link href="//cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/3.3.7/css/bootstrap.min.css" rel="stylesheet">
<!-- jQuery -->
<script src="//code.jquery.com/jquery-1.12.4.min.js"></script>
</head>
<body>
<div class="navbar navbar-default navbar-static-top bg-faded">
<a class="navbar-brand" href="#">HashPass</a>
</div>
<br>
<div class="container col-sm-6 col-sm-offset-3">
<div class="form-group label-static is-empty">
<div class="input-group">
<label for="site" class="control-label">site name</label>
<input id="site" type="text" class="form-control">
<span class="input-group-btn">
<button class="btn btn-fab btn-fab-mini" id="hash" data-clipboard-target="#hashcode"><i class="material-icons">create</i></button>
</span>
</div>
</div>
<div class="form-group label-static is-empty" id="master-input" hidden>
<label for="master" class="control-label">master key</label>
<input id="master" type="password" class="form-control">
</div>
<div class="form-group label-static is-empty">
<div class="input-group">
<label for="hashcode" class="control-label">password</label>
<input id="hashcode" type="text" class="form-control" readonly>
<span class="input-group-btn">
<button class="btn btn-fab btn-fab-mini" id="clear"><i class="material-icons">replay</i></button>
</span>
</div>
</div>
</div>
<!-- Script Loading Section -->
<script src="scripts.min.js"></script>
<!-- Twitter Bootstrap -->
<script src="//cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/3.3.7/js/bootstrap.min.js"></script>
<script>
$.material.init();
</script>
</body>
</html>