forked from ariaInKitchen/Elastos.Tools.Creator.Capsule
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
56 lines (45 loc) · 2.02 KB
/
index.html
File metadata and controls
56 lines (45 loc) · 2.02 KB
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
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<link rel="stylesheet" href="css/bootstrap-3.3.7.css">
<link rel="stylesheet" href="css/app.css">
<script src="js/jquery-3.2.1.js"></script>
<script src="js/bootstrap-3.3.7.js"></script>
<script type="text/javascript">
$(document).ready(function() {
$("a").click(function(e) {
if (this.id != "helpen-tab" && this.id != "helpcn-tab") {
e.preventDefault();
$("#content").attr("src", $(this).attr("href"));
}
})
});
</script>
</head>
<body>
<nav class="navbar navbar-expand-lg navbar-light bg-light">
<div id="tabs" class="navbar-collapse collapse">
<ul class="derivation-type nav nav-tabs" role="tablist" >
<li id="mnemonic-tab" class="active">
<a href="wallet.html" role="tab" data-toggle="tab" target="mainFrame">Step1. Mnemonic</a>
</li>
<li id="capsule-tab">
<a href="capsule.html" role="tab" data-toggle="tab" target="mainFrame">Step2. Generate Capsule</a>
</li>
<li id="upload-tab">
<a href="capsuleUpload.html" role="tab" data-toggle="tab" target="mainFrame">Step3. Upload Capsule info</a>
</li>
<li>
<a id="helpen-tab" href="https://github.com/elaphantapp/DeveloperDoc/blob/master/capsule_guide/capsule_tools_en.md" target="_blank">=Help=</a>
</li>
<li>
<a id="helpcn-tab" href="https://github.com/elaphantapp/DeveloperDoc/blob/master/capsule_guide/capsule_tools_cn.md" target="_blank">=帮助=</a>
</li>
</ul>
</div>
</nav>
<div id="div1" class="my_class">
<iframe id="content" name="mainFrame" style="width: 100%; height: 100%;" src="wallet.html"/>
</div>
</body>
</html>