-
Notifications
You must be signed in to change notification settings - Fork 6
/
settings.html
46 lines (42 loc) · 1.62 KB
/
settings.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
<!DOCTYPE html>
<html lang="eng" class="bg-dark">
<head>
<meta charset="UTF-8">
<link href="./node_modules/bootstrap/dist/css/bootstrap.css" rel="stylesheet" crossorigin="anonymous">
<link href="./styles.css" rel="stylesheet">
<title>DayZ : Loot Editor</title>
</head>
<body class="bg-dark text-white">
<nav class="navbar navbar-expand navbar-light"
style="background-color: rgba(0, 0, 0, 0.2);">
<ul class="navbar-nav p-0">
<li class="nav-item align-self-center p-1">
<img src="./media/DayZLogo.png" class="img-fluid" alt="DayZ Logo"/>
</li>
<li class="nav-item p-3 align-self-center active">
<button class="nav-link btn btn-warning" id="goBack">Back</button>
</li>
<li class="nav-item p-3 align-self-center">
<a target="_blank" class="nav-link btn btn-warning"
href="https://dayz.fandom.com/wiki/Central_Loot_Economy">CLE Wiki</a>
</li>
</ul>
</nav>
<div class="settingLinks">
<a target="_blank" class="nav-link btn btn-warning"
href="https://github.com/PackJC/DayZLootEditor">Source Code</a>
<a target="_blank" class="nav-link btn btn-warning"
href="https://github.com/PackJC/DayZLootEditor/blob/main/README.md">Read Me</a>
</div>
</body>
<footer class="bg-dark text-center text-warning fixed-bottom">
<div class="text-center" id="version" style="background-color: rgba(0, 0, 0, 0.2);">
</div>
</footer>
</html>
<script>
document.getElementById("goBack").addEventListener("click", goBackFunction);
function goBackFunction() {
window.location.href = "index.html";
}
</script>