-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathaccount-support.html
More file actions
55 lines (52 loc) · 2.73 KB
/
account-support.html
File metadata and controls
55 lines (52 loc) · 2.73 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
<?php
$page = "account-support";
require_once 'header-account.html';
?>
<!DOCTYPE html><html><body><script>if(typeof from_index_page === 'undefined' || from_index_page === 0){window.location.replace('https://www.bitamp.com/');}</script></body></html>
<script>
document.title = "Account Support - Bitamp";
$("#header-top-title").text("Bitamp Support");
$("#header-top-description").text("Send us your questions or feedback.");
</script>
<main class="main def-page account">
<div class="container">
<div class="row">
<div class="def-page__content col-md-8 offset-md-2">
<div class="support__contacts">
<div class="support__contact support__contact--support">
<a class="support__email" href="mailto:support@bitamp.com">support@bitamp.com</a>
<div class="support__descr">Support email</div>
</div>
<div class="support__contact support__contact--feedback">
<a class="support__email" href="mailto:feedback@bitamp.com">feedback@bitamp.com</a>
<div class="support__descr">Feedback & Bugs</div>
</div>
</div>
<div class="donate">
<div class="donate__content">
<div class="donate__title">Donate to Bitamp</div>
<div class="donate__label">BTC Address:</div>
<div class="wrap-for-copy">
<input id="donateaddress" class="donate__input form__text-input" value="3BitAmpDV58HHdLXXJfvK3cM6kuQGWH1LE" readonly>
<span id="cpy-donate" class="btn-copy"></span>
<script>
document.getElementById("cpy-donate").onclick = function(){ copy_input("donateaddress"); };
$("#cpy-donate").addClass("copyready");
</script>
</div>
</div>
<div class="donate__qr-wrap">
<div class="footer__qr" style="margin-top:46px;"></div>
</div>
</div>
<p class="def-p">Bitamp is an open-source, client-side, free service that relies solely on donations. This keeps the lights on and development moving forward. Any amount received will be greatly appreciated and benefit the community.</p>
<p class="def-p">If you require assistance using Bitamp, send us an email with your issue or question in detail. Feedback and bug reports are always welcome.</p>
<p class="def-p">Please check the <a class="def-page__link" href="#">Bitamp FAQ</a> page before sending your email.</p>
<p class="def-p">At the moment we only respond to emails in English, this may change in the future depending on demand for specific languages.</p>
</div>
</div>
</div>
</main>
<?php
require_once 'footer-account.html';
?>