-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
45 lines (42 loc) · 1.75 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
33
34
35
36
37
38
39
40
41
42
43
44
45
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<title>Encounter+ Module Packer</title>
<link rel="stylesheet" href="node_modules/bootstrap/dist/css/bootstrap.min.css" />
<link rel="stylesheet" href="assets/css/main.css">
</head>
<body>
<div id="container" class="d-flex flex-column">
<main id="content">
<section id="add-section">
<a href="#" id="add-button"><img src="assets/img/add.svg" alt="icon" /></a>
<p>Select a folder you want to pack.</p>
<small id="add-label" class="form-text text-muted d-none">Unknown path</small>
</section>
<section id="module-section" class="d-none">
<form>
<div class="form-group">
<input id="name-input" type="text" class="form-control" placeholder="Name" />
</div>
<button id="create-button" class="btn btn-outline-primary">Create Module</button>
</form>
<div id="status">
<p id="status-info" class="invisible"></p>
<a id="status-link" class="invisible" href="#"></a>
</div>
</section>
</main>
<footer id="footer">
<p class="text-muted"><a target="_blank" href="https://encounter.plus">Encounter+</a> Module Packer, <a target="_blank" href="https://github.com/encounterplus/module-packer">Github</a></p>
</footer>
</div>
<script src="node_modules/jquery/dist/jquery.min.js"></script>
<script src="node_modules/jquery/dist/jquery.slim.min.js"></script>
<script src="node_modules/bootstrap/dist/js/bootstrap.bundle.min.js"></script>
<script>
require('./renderer.js')
</script>
</body>
</html>