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
52
53
54
55
56
57
58
59
60
61
62
63
64
65<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Issue Editor</title>
</head>
<body>
<aside>
<button id="toggle-navigation" aria-expanded="false">Show Navigation</button>
<nav id="main-navigation" hidden>
<ul>
<li><a href="dashboard.html">Dashboard</a></li>
<li>
<a href="issues.html">Issues</a>
<ul>
<li><a href="issues.html">All Issues</a></li>
<li><a href="tags.html">Tags</a></li>
</ul>
</li>
<li><a href="urls.html">URLs</a></li>
<li><a href="scans.html">Scans</a></li>
</ul> </nav>
</aside>
<main>
<h1>Issue Editor</h1>
Note: Manually created issues can only be added to nodes via the <a href="https://github.com/EqualifyEverything/equalify/issues/509">Equalify Extention</a>.
<form>
<fieldset>
<legend>General Info</legend>
<label for="issue-name">Issue Name:</label>
<input type="text" id="issue-name">
<label for="issue-documentation">Documentation URL:</label>
<input type="url" id="issue-documentation">
</fieldset>
<fieldset>
<legend>Tags</legend>
<label>
<input type="checkbox" checked> Sample Tag
</label>
<label>
<input type="checkbox" checked> Another Sample Tag
</label>
</fieldset>
<button>Save Issue</button>
</form>
<button disabled>Delete Issue</button>
</div>
</main>
<footer>
<nav aria-label="Footer">
<ul>
<li><a href="my-account.html">My Account</a></li>
<li><a href="logs.html">Logs</a></li>
<li><a href="team.html">Team</a></li>
<li><a href="billing.html">Billing</a></li>
</ul>
<button type="button">AI Assistant</button> </nav>
</footer>
<script src="script.js"></script>
</body>
</html>