-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.html
75 lines (66 loc) · 4.38 KB
/
contact.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
<!doctype html>
<html lang="en">
<head>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-165064611-1"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-165064611-1');
</script>
<!-- favico definition -->
<link rel="icon" type="image/ico" href="favicon.ico">
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta name="description" content="Create checklist for your white bags in RotMG. Here you can track your whitebags, orangebags, or rare items in the game Realm of the Mad God.">
<!-- My script and CSS -->
<script src="minified.js?3"></script>
<link rel="stylesheet" href="styles.css?4">
<!-- JQuery -->
<script src="https://code.jquery.com/jquery-3.4.1.slim.min.js" integrity="sha384-J6qa4849blE2+poT4WnyKhv5vZF5SrPo0iEjwBvKU7imGFAV0wwj1yYfoRSJoZ+n" crossorigin="anonymous"></script>
<!-- Bootstrap CSS and JS -->
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/css/bootstrap.min.css" integrity="sha384-Vkoo8x4CGsO3+Hhxv8T/Q5PaXtkKtu6ug5TOeNV6gBiFeWPGFN9MuhOf23Q9Ifjh" crossorigin="anonymous">
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/umd/popper.min.js" integrity="sha384-Q6E9RHvbIyZFJoft+2mJbHaEWldlvI9IOYy5n3zV9zzTtmI3UksdQRVvoxMfooAo" crossorigin="anonymous"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/js/bootstrap.min.js" integrity="sha384-wfSDF2E50Y2D1uUdj0O3uMBJnjuUD4Ih7YwaYd1iqfktj0Uod8GCExl3Og8ifwB6" crossorigin="anonymous"></script>
<title>RotMG Checklist</title>
</head>
<body style="background-color: #243b53;">
<!-- Navbar with title and misc -->
<nav class="navbar" style="background-color: #102a43
; border-bottom: 1px solid #334e68;">
<div>
<h2 class="mt-1 mb-0"><a class="m-0 p-0" style="text-decoration: none;color: #D9E2EC;" href="index.html"><img style="max-width:48px;" src="resources/checkedWhitebag.png">  Rotmg Checklist</a></h2>
</div>
<div class="row">
<!-- Dropdown menu at the top right-->
<button class="btn btn-secondary dropdown ml-4 mr-3 my-auto shadow rounded" style="background-color: #486581;" type="button" id="dropdownMenuButton" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
<img src="resources/optionsIcon.svg" style="width:20px"/>
</button>
<div class="dropdown-menu dropdown-menu-right mr-3 shadow mt-0 mb-5 py-0 bg-white rounded" aria-labelledby="dropdownMenuButton">
<a class="dropdown-item py-2" style="cursor:pointer;" onClick="exportData()">Export data</a>
<div class="dropdown-divider my-0"></div>
<a class="dropdown-item py-2" href="contact.html">Report a Bug</a>
<div class="dropdown-divider my-0"></div>
<a class="dropdown-item py-2" href="contact.html">Suggestions</a>
<div class="dropdown-divider my-0"></div>
<a class="dropdown-item py-2" href="support.html">Support me</a>
</div>
</div>
</nav>
<div class="card mt-3 mx-auto" style="max-width: 85rem;">
<div class="card-body">
<h5>
Hello!<br />
My name is Miguel, if you want to contact me you can do it via e-mail: <b>[email protected]</b><br /><br />
If you want to report a bug, first of all I'd like to thank you for it, doing so helps me keep this page up to date and running smoothly.<br />
If that is the case you can be sure you will get an answer from me personally (unless you dont want it).<br /> <br />
The same goes for if you want to give me some suggestions, I appreciate them a lot and will consider each one of them.<br />
Althought in this case I have to tell you I am the only developer working in this page and that I have a lot of work to do since im finishing my degree.<br />
That means that if something is too hard to implement or I have no time, I won't be able to do so even if it is a good idea.<br />
I will also try to answer suggestions unless I get too many.<br /> <br />
Thanks you very much and may Oryx be with you!! ^^<br />
</h5>
</body>
</html>