forked from Electron-Cash/electroncash.org
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbounties.html
More file actions
114 lines (102 loc) · 4.65 KB
/
bounties.html
File metadata and controls
114 lines (102 loc) · 4.65 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
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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
<!DOCTYPE html>
<html lang="en">
<head>
<script defer src="https://use.fontawesome.com/releases/v5.0.8/js/all.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script type="text/javascript" src="main.js"></script>
<!-- Basic Page Needs
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
<meta charset="utf-8">
<title>Electron Cash</title>
<meta name="description" content="">
<meta name="author" content="">
<!-- Mobile Specific Metas
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- FONT
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
<link href='https://fonts.googleapis.com/css?family=Raleway' rel='stylesheet' type='text/css'>
<link href='https://fonts.googleapis.com/css?family=Montserrat' rel='stylesheet' type='text/css'>
<!-- CSS
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
<link rel="stylesheet" href="css/normalize.css">
<link rel="stylesheet" href="css/skeleton.css">
<link rel="stylesheet" href="css/main.css">
<!-- Favicon
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
<link rel="icon" type="image/png" href="images/favicon.png">
</head>
<body id="body">
<aside class="alert-banner">
<div class="alert">
<p><strong>Beware of Imposter Sites.</strong> ElectronCash.ORG is the ONLY official site for this wallet.</p>
</aside>
<header id="topnav">
<div class="erasable-header">
<div class="container">
<div class="row links">
<div class="eleven columns left">
<h5><a class="home" href="./index.html">Electron Cash</a></h5>
</div>
<div class="one column topnav-a right">
<a href="./index.html">Home</a>
</div>
</div>
</div>
</div>
<div class="bg-cover" class="reveal"></div>
<a class="hamburger-shell">
<div class="hamb top"></div>
<div class="hamb middle"></div>
<div class="menu-name">MENU</div>
<ul id="menu">
<a href="./index.html"> <li>Home</li></a>
</ul>
</a>
</header>
<div class="section bounties-hero">
<div class="container">
<div class="row">
<div class="twelve column hero-title" style="margin-top: 10%">
<h1 class="big-title">Bounties</h1>
<h3 class="small-title" id="small-title">Earn money for helping us fix bugs and issues.</h3>
<p class="fine-print">
The fine print: Bounties are denominated in US dollars and are paid in BCH, and may be changed or removed at any time. Bounties are awarded normally on a first come, first served basis, but at our sole discretion, including determining if an issue was successfully or fully resolved. You are soley responsible for any applicable taxes on your earnings. No monies paid constitute employment, partnership, joint-venture or any other business arangement. All merged code becomes part of the project under the MIT lisence.
</p>
</div>
</div>
</div>
</div>
<div class="section bounties">
<div class="container">
<div class="row">
<div class="bounties-card">
<div class="content">
<h3>Coming Soon</h3>
<h5>$$$</h5>
<p>There are no bounties currently available.</p>
<button class="button-primary">View</button>
</div>
</div>
</div>
</div>
</div>
<footer>
<div class="container">
<div class="row">
<h4>The Revolution Will Not Be Centralized</h4>
</div>
<div class="row">
<h6 style="font-size: 1.75rem;">
<a href="http://www.bitcoincash.org/">Learn more about Bitcoin Cash</a> | <a href="https://github.com/fyookball/electrum">Explore Source Code</a> | <a href="http://www.reddit.com/r/btc">Uncensored Bitcoin Forum</a>
</h6>
</div>
<div class="row">
<h6>© ElectronCash.org</h6>
</div>
</div>
</footer>
<!-- End Document
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
</body>
</html>