-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathdisclaimer.html
99 lines (91 loc) · 3.85 KB
/
disclaimer.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
<!DOCTYPE html>
<html>
<head>
<title>TezBox - Secure Tezos Wallet</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<link rel="stylesheet" type="text/css" href="css/style.css">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.5.0/css/all.css" integrity="sha384-B4dIYHKNBt8Bc12p+WXckhzcICo0wtJAoU8YZTY5qE0Id1GSseTk6S+L3BlXeVIU" crossorigin="anonymous">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
</head>
<style>
.navbar-inverse .navbar-nav>li>a:focus {
color: inherit;
background-color: transparent;
}
</style>
<body class="internal-pg">
<section class="navigat">
<nav class="navbar navbar-inverse">
<div class="container-fluid">
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#myNavbar">
<img src="images/Menu Icon.png" class="img-responsive" alt="menu icon">
</button>
<a class="navbar-brand" href="#"><img src="images/tezbox-logo.png" class="img-responsive"></a>
</div>
<div class="collapse navbar-collapse" id="myNavbar">
<ul class="nav navbar-nav navbar-right">
<li><a class="anim-btn" href="#feature">Features</a></li>
<li><a class="anim-btn" href="#socialize">Socialize</a></li>
<li><a href="https://github.com/tezbox" class="hidden-lg hidden-md hidden-sm">Github</a></li>
<li><a href="https://github.com/tezbox" type="button" class="btn-github xs-hidden-xs" ><i class="fab fa-github"> </i> Github</a></li>
<li><a href="#" class='anim-btn'><img src="images/Tezos Logo.png" alt="tezos" class="nav-tezos"></a></li>
</ul>
</div>
</div>
</nav>
</section>
<section class="primary-section pt5">
<div class="container-fluid">
<div class="row">
<div class="col-sm-12">
<H1 class="text-center primary-text-color font700 text-capitalize">Disclaimer</H1>
<p>TezBox is a community developed project, and offers no protection against potential hacks or losses of financial assets or digital tokens stored within the TezBox wallet. You are using this wallet at your own risk.</p>
</div>
</div>
</div>
</section>
<section class="footer-top">
<div class="container-fluid">
<div class="row">
<div class="col-md-6 col-xs-12">
<img src="images/Tezbox Logo - Footer.png" alt="TezBox">
</div>
<div class="col-md-6 col-xs-12">
<p class="font600 text-right"><span class="font800">Donate Tez</span> - <span class="primary-text-color">tz1cLDXASgh48ntYmLqM3cqPEXmUtpJVVPma</span>
<br><span class="font800">Donate Bitcoin</span> - <span class="primary-text-color">1KSiyfgs5XwTZjaLpmCTHxonsyXMx383P1</span></p>
</div>
</div>
</div>
</section>
<section class="footer-bottom">
<div class="container-fluid">
<div class="row">
<div class="col-md-6 col-sm-6 col-xs-12">
<p>© 2019 TezBox. All Rights Reserved.</p>
</div>
<div class="col-md-6 col-sm-6 col-xs-12 text-right">
<a href="https://twitter.com/TezBox_Wallet" target="_blank" title="twitter"><i class="fab fa-twitter"></i></a>
<a href="https://github.com/tezbox" target="_blank" title="github"><i class="fab fa-github"></i></a>
</div>
</div>
</div>
<div class="scroll-top">
<a href="#banner" class="anim-btn"><img src="images/top-btn.png"/></a>
</div>
</section>
<script>
$(document).ready(function(){
$(document).on('click', 'a[href^="#"]', function (event) {
event.preventDefault();
$('html, body').animate({
scrollTop: $($.attr(this, 'href')).offset().top
}, 500);
});
});
</script>
</body>
</html>