This repository has been archived by the owner on Apr 17, 2018. It is now read-only.
forked from rsksmart/utils
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
88 lines (78 loc) · 3.48 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- Bootstrap Core CSS -->
<link href="css/bootstrap.css" rel="stylesheet">
<link href="css/style.css" rel="stylesheet">
<!-- Custom Fonts -->
<link href="css/font-awesome/css/font-awesome.min.css" rel="stylesheet" type="text/css">
<link href="https://fonts.googleapis.com/css?family=Montserrat:400,700" rel="stylesheet" type="text/css">
<link href="https://fonts.googleapis.com/css?family=Lato:400,700,400italic,700italic" rel="stylesheet" type="text/css">
<script src="lib/rsk-conversion-utils.js"></script>
<script src="lib/jquery-3.1.1.min.js"></script>
<script src="lib/rsk-helper.js"></script>
<title>RSK Convertion Utils</title>
<link rel="icon" href="img/favicon.ico">
</head>
<body id="page-top" class="index">
<nav id="mainNav" class="navbar navbar-default navbar-fixed-top navbar-custom">
<div class="container">
<div class="navbar-header">
<a href="/">
<img src="img/RSKLOGOBN_daykpx.png" >
</a>
</div>
</div>
</nav>
<!-- Header -->
<header>
<div class="container">
<div class="row">
<div class="col-lg-12">
<div>
<h1> From BTC to RSK key</h1>
<h3> BTC Private key: </h3>
<input id="toRskInput" size="60">
<button id="toRskBtn" type='button'>Transform!</button>
<div id="toRskResult"></div>
</div>
<br/><br/><br/>
<div>
<h1> From RSK to BTC key</h1>
<h3> RSK Private key: </h3>
<input id="toBtcInput" size="70">
<select id="btcNet">
<option value="TEST_NET" selected="selected">Test Net</option>
<option value="MAIN_NET">Main Net</option>
</select>
<button id="toBtcBtn" type='button'>Transform!</button>
<div id="toBtcResult"></div>
</div>
</div>
</div>
</div>
</header>
<footer class="text-center">
<div class="footer-above">
<div class="container">
<div class="row">
<div >
<ul class="list-inline">
<li><a href="https://www.facebook.com/RSKsmart" class="btn-social btn-outline"><i class="fa fa-fw fa-facebook"></i></a></li>
<li><a href="https://plus.google.com/106858805051276533565" class="btn-social btn-outline"><i class="fa fa-fw fa-google-plus"></i></a></li>
<li><a href="https://twitter.com/RSKsmart" class="btn-social btn-outline"><i class="fa fa-fw fa-twitter"></i></a></li>
<li><a href="https://www.linkedin.com/company/rsk-labs" class="btn-social btn-outline"><i class="fa fa-fw fa-linkedin"></i></a></li>
<li><a href="http://www.rsk.co" class="btn-social btn-outline"><i class="fa fa-fw fa-rss"></i></a></li>
<li><a href="https://github.com/rsksmart" class="btn-social btn-outline"><i class="fa fa-fw fa-github"></i></a></li>
<li><a href="https://www.instagram.com/rsksmart/" class="btn-social btn-outline"><i class="fa fa-fw fa-instagram"></i></a></li>
</ul>
</div>
</div>
</div>
</div>
</footer>
</body>
</html>