-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
57 lines (52 loc) · 2.68 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<link rel="icon" sizes="400x400" href="static/images/accenteur.png">
<link rel="stylesheet" href="static/bootstrap-5.2.3-dist/css/bootstrap.min.css">
<link rel="stylesheet" href="static/fontawesome-free-6.3.0-web/css/all.min.css">
<link rel="stylesheet/less" href="static/css/accenteur.less">
<title>Accenteur</title>
</head>
<body>
<div id="page">
<h2>
Accenteur
</h2>
<h3>
Numericum instrumentum ad latinos textus accentizandos
</h3>
<div id="input_output" class="d-flex mt-3">
<div id="input" contenteditable="true" spellcheck="false" class="text_area"><span style="color: grey;">Hic scribe textum tuum…</span></div>
<div id="output" contenteditable="true" spellcheck="false" class="text_area"></div>
</div>
<div id="overlay">
<img src="static/images/wait.gif" style="margin-bottom:20px"></br>
<p>Afferuntur elementa…</p>
</div>
<div class="modal fade" id="choice_dialog" tabindex="-1" aria-labelledby="choice_dialog" aria-hidden="true">
<div class="modal-dialog modal-dialog-centered">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title" id="choice_dialog">Elige tibi formam</h5>
<button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Claudere"></button>
</div>
<div class="modal-body"></div>
<div class="modal-footer">
<button type="button" class="btn btn-secondary" data-bs-dismiss="modal">Claude</button>
<button type="button" id="validate_choice" class="btn btn-primary">Confirma</button>
</div>
</div>
</div>
</div>
<a href="https://github.com/BrRoman/accenteur"><span class="fab fa-github mt-5" style="color: black; font-size: 18pt;" title="View on Github"></span></a>
</div>
<script src="static/js/jquery-3.6.0.min.js"></script>
<script src="static/bootstrap-5.2.3-dist/js/bootstrap.bundle.min.js"></script>
<script src="static/fontawesome-free-6.3.0-web/js/all.min.js"></script>
<script src="static/js/less.min.js"></script>
<script src="static/js/data.js"></script>
<script src="static/js/accenteur_core.js"></script>
<script src="static/js/accenteur_main.js"></script>
</body>
</html>