-
Notifications
You must be signed in to change notification settings - Fork 0
/
vici.html
51 lines (50 loc) · 2.06 KB
/
vici.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
47
48
49
50
51
<!DOCTYPE html>
<html lang="en-CA">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>VICI</title>
<script src="vici.js"></script>
<link rel="stylesheet" type="text/css" href="vici.css">
<link rel="icon" type="image/x-icon" href="blue.jpg">
</head>
<body>
<nav>
</nav>
<header id="platform-header">
<!--The header allows for form elemenets to be loaded in programatically-->
<details id="formSelectionMenu">
<summary>Avaliable Forms</summary>
<button id="form-core" onclick="createNewForm(this.id)">Add Core Form</button>
</details>
<details id="formCreationMenu">
<summary>New Form Creation</summary>
<input type="text" id="formDisplayName" name="formDisplayName" value=""/>
<button id="formCreationSubmit" onclick="addNewForm()">Include Form Type</button>
<button id="formAddFieldButton" onclick="addFormField()">Add Field</button>
<button id="formCreationClear" onclick="clearFormField()">Clear Form</button>
<form id="formCreation">
<input type="text" id="formType" name="type" value="type"/>
<input type="text" id="formName" name="name" value="name"/>
<input type="text" id="formAttributes" name="attributes" value="attributes"/>
<input type="text" id="formClass" name="class" value="class"/>
<input type="reset" value="Reset" />
</form>
<form id="formCreationBuffer"></form>
</details>
</header>
<section id="platform-content">
<!--JS will import these-->
</section>
<footer id="platform-footer">
<details id="formEntryMenu">
<summary>Active Entries</summary>
</details>
<details id="formTagMenu">
<summary>Active Tags</summary>
</details>
<!--Generic footer for setttings and tools and search, not 100% sure what should go here-->
<a href="https://github.com/Emperor42/vici">GitHub Link for Project - Copyright 2024 VICI</a>
</footer>
</body>
</html>