-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
32 lines (32 loc) · 1.26 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
<!DOCTYPE html>
<html lang="pl">
<head>
<meta charset="utf-8">
<title>Conan: Exiles Mod Manager</title>
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.2.0/css/all.css" integrity="sha384-hWVjflwFxL6sNzntih27bfxkr27PmbbK/iSvJ+a4+0owXq79v+lsFkW54bOGbiDQ" crossorigin="anonymous">
<link rel="stylesheet" href="/css/style.css">
<!--[if IE]>
<script src="js/html5shiv.min.js"></script>
<![endif]-->
<script src="js/jquery.3-3-1.min.js"></script>
<script src="js/sweetalert2.js"></script>
<script src="js/sortable.js"></script>
<script src="js/manager.js"></script>
</head>
<body>
<div id="main">
<h1 id="enabled-h1">Mods enabled</h1>
<div id="mods-enabled" class="list-group">
</div>
<button id="button-save" class="button button-green">Commit changes to the modlist</button>
<h1 id="available-h1">Mods available (not enabled)</h1>
<button id="button-enable-all" class="button button-blue">Add all mods to the enabled list</button>
<div id="mods-available" class="list-group">
</div>
<button id="button-clear" class="button button-red">Clear the modlist</button>
<div id="spinner-body">
<img id="spinner" src="images/please-wait.svg" />
</div>
</div>
</body>
</html>