-
Notifications
You must be signed in to change notification settings - Fork 3
/
options.html
95 lines (81 loc) · 3.49 KB
/
options.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Osmosis Companion - Options</title>
<link rel="stylesheet" href="options.css">
<script type="text/javascript" src="lib/coingecko-exchange-rates-js/lib/big.min.js"></script>
<script type="text/javascript" src="lib/coingecko-exchange-rates-js/index.js"></script>
<script type="text/javascript" src="lib/convert-bech32-address/dist/script.min.js"></script>
<script type="text/javascript" src="settings.js"></script>
<script type="text/javascript" src="options.js"></script>
<script type="text/javascript" src="companion.js"></script>
</head>
<body>
<div class="container">
<h1>Osmosis Companion - Options</h1>
</div>
<br>
<div class="section">
<!-- PORTFOLIO
<div class="container">
<label for="walletName">Portfolio Name</label>
<input type="text" name="walletName" id="walletName" value="" placeholder='"My Portfolio"'>
</div> -->
<!-- OSMOSIS WALLET ADDRESS -->
<div class="container address">
<label for="address_osmo">Osmosis</label>
<input type="text" name="address" id="address" value="" placeholder="Your Osmosis address">
<button type="button" name="save" id="btnSaveAddress">💾</button>
<button type="button" name="clear" id="btnClearAddress">❌</button>
</div>
<div class="container hidden" id="msg"></div>
<!-- OTHER IBC WALLETS -->
<!-- <div class="container row">
<label for="address_other">Other</label>
<input type="text" name="address_other" id="address_other" value="" placeholder="Add another chain's address">
<button type="button" name="new_multi" id="btnAddMulti" title="Auto-derive">✨</button>
<button type="button" name="new_one" id="btnAddSingle">✔️</button>
</div> -->
<!-- <div class="container" id="containerAddOrDerive">
<label>Add IBC enabled wallets:</label>
<button type="button" id="btnAddSingle">➕ Add single</button>
<button type="button" id="btnAutoderive" title="Auto-derive">✨ Derive from bech32</button>
</div>
<div class="prompt hidden" id="promptConfirmDerive">
<label><i><b>Are you sure?</b><br />Using auto-derive will overwrite all other addresses below...</i></label><br />
<button type="button" id="btnConfirmAutoderive" title="Confirm auto-derive">✔️ Proceed</button>
<button type="button" id="btnCancelAutoderive" title="Cancel auto-derive">❌ Cancel</button>
</div>
<div class="container column" id="otherWallets">
</div>
<template id="template_dynamic_address">
<div class="address">
<label for="">Address</label>
<input type="text" disabled="disabled" name="" value="" placeholder="Your Template address">
<button type="button" class="button-edit">✏️</button>
<button type="button" class="button-save hidden">✔️</button>
<button type="button" class="button-delete">❌</button>
</div>
</template>
<template id="template_single_address">
</template> -->
</div>
<div class="container">
<a href="popup.html"><button type="button" name="back" id="btnBack">Back</button></a>
</div>
<div class="container hidden" id="containerDefault">
<label for="defaultAddress">Default Address</label>
<select class="" name="defaultAddress">
</select>
</div>
<br>
<br>
<div class="container">
<h4>
Show support:
</h4>
<a href="https://app.starname.me/profile/jason" target="_blank">app.starname.me/profile/jason</a>
</div>
</body>
</html>