forked from kwikiel/swaping
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
121 lines (102 loc) · 3.87 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
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
115
116
117
118
119
120
121
<!DOCTYPE html>
<html lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1.0, user-scalable=no"/>
<title>
Bitcoin swap bot
</title>
<!-- CSS -->
<link href="static/css/materialize.css" type="text/css" rel="stylesheet" media="screen,projection"/>
<link href="static/css/style.css" type="text/css" rel="stylesheet" media="screen,projection"/>
</head>
<body>
<nav class="green lighten-1" role="navigation">
<div class="nav-wrapper container"><a id="logo-container" href="#" class="brand-logo">Papaj</a>
<ul class="right hide-on-med-and-down">
<li><a href="login.html">Login</a></li>
</ul>
<ul id="nav-mobile" class="side-nav">
<li><a href="login.html">Login</a></li>
</ul>
<a href="#" data-activates="nav-mobile" class="button-collapse"><i class="mdi-navigation-menu"></i></a>
</div>
</nav>
<div class="section no-pad-bot" id="index-banner">
<div class="container">
<br><br>
<h1 class="header center black-text">Passive income with swaps</h1>
<div class="row center">
<h5 class="header col s12 light">Smart algotithm for bitmarket exchange</h5>
</div>
<div class="row center">
<a href="http://materializecss.com/getting-started.html" id="download-button" class="btn-large waves-effect waves-light red">
Two clicks to passive income!</a>
</div>
<br><br>
</div>
</div>
<div class="container">
<div class="sectioTeam">
<!-- Icon Section -->
<div class="row">
<div class="col s12 m4">
<div class="icon-block">
<h2 class="center "><i class="mdi-image-flash-on"></i></h2>
<h5 class="center">API Speed</h5>
<p class="light">No need for manually changing swap rates. Just turn it on.</p>
</div>
</div>
<div class="col s12 m4">
<div class="icon-block">
<h2 class="center text"><i class="mdi-action-account-balance"></i></h2>
<h5 class="center">Security</h5>
<p class="light">We don't have any access to your account other than via API keys that allow only for basic swap operations. </p>
</div>
</div>
<div class="col s12 m4">
<div class="icon-block">
<h2 class="center text"><i class="mdi-action-trending-up"></i></h2>
<h5 class="center">Up to 250% yearly profit!</h5>
<p class="light">Sometimes rates are off the charts - with our bot you will be sure that you will catch that spike</p>
</div>
</div>
</div>
</div>
<br><br>
<div class="section">
</div>
</div>
<footer class="page-footer green">
<div class="container">
<div class="row">
<div class="col l6 s12">
<h5 class="white-text">Legal disclaimer</h5>
<p class="grey-text text-lighten-4">Copyright and Terms of Service </p>
</div>
<div class="col l3 s12">
<h5 class="white-text">Resources</h5>
<ul>
<li><a class="white-text" href="https://bitmarket.zendesk.com/hc/pl/sections/200731902-Kontrakty-swap">Swaps explaination</a></li>
</ul>
</div>
<div class="col l3 s12">
<h5 class="white-text">Contact</h5>
<ul>
<li><a class="white-text" href="#!">Team</a></li>
</ul>
</div>
</div>
</div>
<div class="footer-copyright">
<div class="container">
Made by <a class="orange-text text-lighten-3" href="http://materializecss.com">Materialize</a>
</div>
</div>
</footer>
<!-- Scripts-->
<script src="https://code.jquery.com/jquery-2.1.1.min.js"></script>
<script src="static/js/materialize.js"></script>
<script src="static/js/init.js"></script>
</body>
</html>