-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
42 lines (36 loc) · 1.16 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
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<title class="shxm">ShapeForms</title>
<link rel="stylesheet" href="./web/static/css/app.css">
<link rel="stylesheet" href="./lib/codemirror-5.51.0/lib/codemirror.css">
<link rel="stylesheet" href="./lib/codemirror-5.51.0/theme/ayu-mirage.css">
<link rel="icon" type="image/png" sizes="16x16" href="../static/img/favicon-16x16.png">
<script src="./lib/codemirror-5.51.0/lib/codemirror.js"></script>
<script src="./lib/codemirror-5.51.0/mode/xml/xml.js"></script>
<script src="./lib/codemirror-5.51.0/mode/shex/shex.js"></script>
</head>
<body>
<header class="header">
<h1>ShapeForms</h1>
</header>
<section id="editorcontainer">
<div class="centerdiv">
<button id="shextoform" class="btn1">Create Form</button>
</div>
<div class="centerdiv">
<label for="shextext"></label>
<textarea id="shextext"></textarea>
</div>
</section>
<section id="resultform">
</section>
<div class="centerdiv">
<button id="back" style="display: none;" class="btn1">Back to editor</button>
</div>
<pre id="output">
</pre>
<script src="./index.js"></script>
</body>
</html>