forked from owenvoke/arionum-web-wallet
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
109 lines (95 loc) · 4.84 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Arionum Web Wallet</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/meyer-reset/2.0/reset.min.css">
<link rel="stylesheet" href="css/style.css?c=7">
<meta property="og:url" content="https://wallet.arionum.com/">
<meta property="og:type" content="website">
<meta property="og:title" content="Arionum Web Wallet">
<meta property="og:image" content="https://wallet.arionum.com/images/aro-icon-only-color.png">
<meta property="og:description" content="Explore the Arionum Web Wallet and use ARO online on your Desktop or on the go!">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
</head>
<body>
<div class="placeholder" data-large="https://images.unsplash.com/photo-1506789658653-e5729a1ee31d?ixlib=rb-0.3.5&ixid=eyJhcHBfaWQiOjEyMDd9&s=df9993cd64418ab6085234de77617931&auto=format&fit=crop&w=2091&q=80" data-mobile="https://images.unsplash.com/photo-1506789658653-e5729a1ee31d?ixlib=rb-0.3.5&ixid=eyJhcHBfaWQiOjEyMDd9&s=df9993cd64418ab6085234de77617931&auto=format&fit=crop&w=2091&q=30"
style="position: absolute;top:0;left:0;min-width: 100%;
height: auto;
min-height: 100%;
width: auto;">
<img src="https://images.unsplash.com/photo-1506789658653-e5729a1ee31d?ixlib=rb-0.3.5&ixid=eyJhcHBfaWQiOjEyMDd9&s=df9993cd64418ab6085234de77617931&auto=format&fit=crop&w=420&q=1" class="img-small">
</div>
<div id="login-frame" class="hidden" style="overflow:hidden;">
<iframe src="pages/login" frameborder="0" style="overflow: hidden"></iframe>
</div>
<div id="signup-frame" class="hidden">
<iframe src="pages/signup" frameborder="0" style="overflow: hidden"></iframe>
</div>
<section class="hero">
<nav>
<div class="col-nav logo-container-nav"><a href="#" class="logo-icon-nav"></a></div>
<div class="col-nav menu-container-nav">
<ul class="menu-content-nav text-nav">
<li class="open-menu-personal" style="display:none;"><a href="#" class="selected-personal">Personal</a></li>
<li class="open-menu-business" style="display:none;"><a href="#" class="selected-business">Business</a></li>
<li id="dashboard_btn" style="float:right;"><a href="#">Dashboard</a></li>
</ul>
</div>
<div class="col-nav buttons-container-nav">
<div class="buttons-content-nav text-btn-nav">
<a href="#" id="login">Log In</a>
<a href="#" id="signup">Sign Up</a>
</div>
</div>
</nav>
<div class="sub-menu personal">
<ul class="sub-menu-list">
<li><a href="#">Getting Started <span>How to use Arionum Web Wallet</span></a></li>
<li><a href="#">Trading <span>How to trade Arionum</span></a></li>
<li><a href="#">Payments <span>Speed your payment time up</span></a></li>
<li><a href="#">Check Out Securely Online <span>Use Arionum to pay secure</span></a></li>
<li><a href="#">Mobile Wallet <span>Take a look at the Mobile Wallet</span></a></li>
<li><a href="#">Exchanges <span>Current Exchanges and Informations</span></a></li>
</ul>
<a href="#" class="close-menu-personal">
<span></span>
<span></span>
</a>
</div>
<div class="sub-menu business">
<ul class="sub-menu-list">
<li><a href="#">Business Web API's <span>Merchant services, invoicing and products</span></a></li>
<li><a href="#">Add Arionum to your Checkout <span>Add the code and accept crypto online</span></a></li>
<li><a href="#">Anonymous and simple <span>Get paid in your webstore with Arionum</span></a></li>
</ul>
<a href="#" class="close-menu-business">
<span></span>
<span></span>
</a>
</div>
<div class="hero-heading">
<div id="warning-message" class="alert alert-danger" role="alert">
BEWARE OF IMPOSTORS! CHECK THE URL BEFORE ENTERING PERSONAL INFORMATION OR YOUR PRIVATEKEY!
</div>
<h1>Discover the magic of the Arionum Web Wallet.</h1>
<a href="#" id="signup2" class="btn-blue">Sign Up for Free</a>
<a href="#" id="login2" class="btn-clear">Already have an Account? Log in</a>
</div>
</section>
<section class="footer-section" style="text-align:center;">
<h6>Developed by Cuby & AroDev | Released under the MIT license | Absolutely no warranties</h6>
</section>
<script src="https://code.jquery.com/jquery-3.3.1.min.js" integrity="sha256-FgpCb/KJQlLNfOu91ta32o/NMZxltwRo8QtmkMRdAu8=" crossorigin="anonymous"></script>
<script src='./dashboard/js/aro.js?c=1'></script>
<script>
var aro = new aro;
</script>
<script src="js/index.js?cloudflare=2"></script>
<script>
if (location.protocol != 'https:') {
location.href = 'https:' + window.location.href.substring(window.location.protocol.length);
}
</script>
</body>
</html>