-
Notifications
You must be signed in to change notification settings - Fork 1
/
popup.html
executable file
·27 lines (23 loc) · 971 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
<!DOCTYPE html>
<html>
<head>
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Open+Sans" rel="stylesheet">
<link rel="stylesheet" href="css/materialize.min.css"/>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div id="menu"><i class="material-icons left">menu</i>Incentivizing Open Source</div>
<div class="top">
<div><img id="miningIcon" src=""/></div>
<a id="miningButton" class="btn white waves-effect waves-light"></a>
<div id="contribute">Contribute</div>
</div>
<div class="bottom">
<div id="dash"><a href="./build/index.html" target="_blank">View Dashboard</a></div>
</div>
<script type="text/javascript" src="js/jquery.min.js"></script>
<script type="text/javascript" src="js/materialize.min.js"></script>
<script type="text/javascript" src="popup.js"></script>
</body>
</html>