forked from ceceradio/twitter-block-chain
-
Notifications
You must be signed in to change notification settings - Fork 1
/
popup.html
32 lines (31 loc) · 938 Bytes
/
popup.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
<!doctype html>
<html>
<head>
<title>Twitter Block Chain</title>
<style>
body {
font-family: "Segoe UI", "Lucida Grande", Tahoma, sans-serif;
font-size: 100%;
}
#status {
max-width: 600px;
min-width: 400px;
padding:15px;
}
button {
width:100%;
}
</style>
<link rel="stylesheet" href="bower_components/bootstrap/dist/css/bootstrap.min.css">
<script src="js/browser-polyfill.min.js"></script>
<script src="js/popup.js"></script>
</head>
<body>
<div id="options">
<button class="btn btn-primary" id="runBlockchain">Run Block Chain</button>
<button class="btn btn-primary" id="runExportchain">Run Export Chain</button>
<button class="btn btn-primary" id="runImportchain">Run Import Chain</button>
</div>
<h4 id="status">Navigate to a following or followers page on Twitter.</h4>
</body>
</html>