-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
54 lines (43 loc) · 1.37 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<link rel="stylesheet" href="/bootstrap.min.css">
<script src="/axios.js"></script>
<script src="/common.js"></script>
<title>Fair Web</title>
</head>
<body>
<main role="main" class="container" id="main">
<h1 class="mt-5">Fair Web Wallet</h1>
<p>Your account in this service: <span id="yourid"></span></p>
<p><select id="picker">
</select></p>
<p>Deposit Address: <a href="#" id="deposit"></a></p>
<p><input type="text" id="address" placeholder="Withdraw Address"></p>
<p><input type="text" id="amount" placeholder="Amount"></p>
<p><button class="btn btn-success" id="withdraw">Withdraw</button></p>
<!--<script>
window.fbAsyncInit = function() {
FB.init({
appId : '205988163442584',
cookie : true,
xfbml : true,
version : '{api-version}'
});
FB.AppEvents.logPageView();
};
(function(d, s, id){
var js, fjs = d.getElementsByTagName(s)[0];
if (d.getElementById(id)) {return;}
js = d.createElement(s); js.id = id;
js.src = "https://connect.facebook.net/en_US/sdk.js";
fjs.parentNode.insertBefore(js, fjs);
}(document, 'script', 'facebook-jssdk'));
</script>
<fb:login-button
scope="public_profile,email"
onlogin="checkLoginState();">
</fb:login-button>-->
</main>
</body></html>