-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmcmods.html
More file actions
37 lines (37 loc) · 1.37 KB
/
Copy pathmcmods.html
File metadata and controls
37 lines (37 loc) · 1.37 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
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Minecraft Mods List</title>
<link rel="stylesheet" type="text/css" href="https://cdn.jsdelivr.net/gh/ekmas/cs16.css@main/css/cs16.min.css">
<link rel="stylesheet" href="style.css" />
<script src="index.js"></script>
<script src="mobile-redirect.js"></script>
</head>
<body>
<div class="content">
<header>
<h1>Floowen's Minecraft Mods List</h1>
<p>Select your minecraft mods folder and check for missing ones!</p>
</header>
<p><a href="index.html">back</a></p>
<br>
<hr class="cs-hr" />
<br>
<div class="upload">
<button class="cs-btn" id="uploadButton">Upload Mods Folder</button>
</div>
<br>
<p id="requiredSourceStatus">Loading required list...</p>
<p id="fileCount">No folder selected.</p>
<section class="fileList">
<div id="fileList"></div>
</section>
<br>
<p id="missingCount">Missing required files: none.</p>
<section class="fileList">
<div id="missingList"></div>
</section>
</div>
</body>
</html>