-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
36 lines (35 loc) · 1.28 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta http-equiv="content-type" content="text/html;charset=utf-8" />
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width,initial-scale=1" />
<meta name="theme-color" content="#12100E" />
<!--<link rel="manifest" href="static/manifest.json" /> -->
<title>PLB web config</title>
<link href="static/css/app.css" rel="stylesheet" />
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<script type="text/javascript" src="static/js/configscript.js"></script>
</head>
<body onload="init()">
<div id="wrapper">
<div class="head">
<a href="#" class="logo">
<img src="static/logo.png" alt="plb logo" />
</a>
<h1 class="text-center">PLB Config Generator</h1>
</div>
<div id="app" />
<!--
<button name="init" onclick=printResponse()>Log Config in Console</button>
<button name="parse" onclick=parseQuestions(defaultconfigtext)>Parse Config into Options</button>
<button name="build" onclick=buildElements(parseQuestions(defaultconfigtext))>Build the options onto the page</button>
-->
</div>
<div id="configs">
<!-- lots of fun gets added here -->
</div>
</div>
</div>
</body>
</html>