-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
56 lines (55 loc) · 2.63 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
<!Doctype HTML>
<html lang="en" class="all">
<head>
<title>PK to Keystore</title>
<meta name='copyright' content='Copyright 2017. Keno Budde.'>
<meta charset="utf-8">
<!--<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">-->
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0">
<!--<meta http-equiv="Cache-Control" content="no-cache">-->
<link rel="shortcut icon" href="favicon.ico">
<!-- FONTS -->
<link href="https://fonts.googleapis.com/css?family=Lobster|Open+Sans|Roboto:100,300,400" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Quicksand" rel="stylesheet">
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<!-- CSS -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/materialize/0.100.2/css/materialize.min.css">
<link rel="stylesheet" href="main.css">
<!-- JavaScript -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/materialize/0.100.2/js/materialize.min.js"></script>
<script src="keythereum.min.js"></script>
<script src="pk_main.js"></script>
</head>
<body class="all">
<div class="valign-wrapper all">
<div class="valign center-align white all">
<div class="row">
<form class="col s12" id="change" >
<div class="row">
<div class="input-field col s12">
<input id="private_key" type="password" class="validate">
<label for="private_key">Private Key</label>
</div>
<div class="input-field col s12">
<i class="material-icons prefix">vpn_key</i>
<input id="icon_new_password" name="new_password" pattern=".{0}|^(?=.*[a-z])(?=.*[A-Z])(?=.*\d).{8,}$" type="password" class="validate" required>
<label for="icon_new_password" class="">New Password</label>
</div>
<div class="input-field col s12">
<i class="material-icons prefix">done</i>
<input id="icon_password_confirmation" name="confirmation" type="password" class="validate" required>
<label for="icon_password_confirmation" class="">Confirm Password</label>
</div>
</div>
</form>
<a id="data" data-obj='{}'class="waves-effect waves-light btn-large"><i class="material-icons right">file_download</i>Download Me</a>
</div>
</div>
<div id="submit_form" class="fixed-action-btn">
<a class="waves-effect waves-circle waves-light btn-floating btn-large orange">
<i class="large material-icons">done</i>
</a>
</div>
</div>
</body>