-
Notifications
You must be signed in to change notification settings - Fork 1
/
entity.html
39 lines (39 loc) · 1.78 KB
/
entity.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<base target="_top"/>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/select2/4.0.5/css/select2.min.css" integrity="sha256-xJOZHfpxLR/uhh1BwYFS5fhmOAdIRQaiOul5F/b7v3s=" crossorigin="anonymous" />
<script src="https://code.jquery.com/jquery-3.2.1.min.js" integrity="sha256-hwg4gsxgFZhOsEEamdOYGBf13FyQuiTwlAQgxVSNgt4=" crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/tether/1.4.0/js/tether.min.js" integrity="sha384-DztdAPBWPRXSA/3eYEEUWrWCy7G5KFbe8fFjk5JAIxUYHKkDx6Qin1DkWx51bBrb" crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/select2/4.0.5/js/select2.min.js" integrity="sha256-FA14tBI8v+/1BtcH9XtJpcNbComBEpdawUZA6BPXRVw=" crossorigin="anonymous"></script>
<script src="https://appsforoffice.microsoft.com/lib/1.0/hosted/office.js" type="text/javascript"></script>
<script src="process.js" type="text/javascript"></script>
<script src="entity.js" type="text/javascript"></script>
<script src="form.js" type="text/javascript"></script>
</head>
<body>
<form id="entity-form">
<select id="type"></select>
<label for="search-entity">Suchbegriff:</label>
<select id="search-entity"></select>
<input name="submit" value="Create" class="btn btn-primary" id="submit-id-submit" type="submit"/>
</form>
<hr />
<form id="app-form">
<label>Textkritischer Apparat</label>
</form>
<hr />
<form id="paragraph-styles">
<label>Absätze</label>
<select id="paragraph"></select>
</form>
<hr />
<form id="run-styles">
<label>Textabschnitte</label>
<select id="run"></select>
</form>
<hr />
<p id="textOutput"></p>
</body>
</html>