forked from CharlotteWeirich/SBAT
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
68 lines (60 loc) · 2.76 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
57
58
59
60
61
62
63
64
65
66
67
68
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>SBAT</title>
<link rel="stylesheet" href="static/style/SBAT.css">
<link rel="stylesheet" href="static/style/style-ui.css" />
<link rel="stylesheet" href="static/style/style-vis.css" />
<link rel="stylesheet" href="static/style/style.css" />
</head>
<body>
<div class="flex-container">
<div id="upperPanel">
<div id="logoArea">
<img src="static/img/SBATlogo.png" alt="SBAT logo" id="SBATlogo">
<h5>A Simple Browser-based Annotation Tool</h5>
</div>
<div id="commitArea">
<textarea style="width: 150px; height: 50px;" id="commitMessage">Commit from SBAT</textarea>
<button id="commitConfirmButton">Commit</button>
</div>
<button id="showDocButton">show Doc</button>
<input id="options_button" type="button" value="Options" tabindex="-1"
title="Set Visual, Annotation and Network Options" />
</div>
<p id="message"></p>
<div id="githubArea">
<div id="patArea" class="block">
<h2>Enter your Personal Access Token</h2>
<textarea style="width: 150px; height: 25px;" id="personalAccessToken"></textarea>
<button id="authenticationButton">Log in</button>
</div>
<div id="branchSelectArea" class="block">
<h2>Select a branch</h2>
<select id="branchSelect"></select>
<button id="branchSelectButton">Select</button>
</div>
<div id="fileSelectArea" class="block">
<h2>Select a file</h2>
<select id="fileSelect"></select>
<button id="fileSelectButton">Select</button>
</div>
</div>
<div id="bratArea">
<div id="brat"></div>
</div>
</div>
<script src="https://code.jquery.com/jquery-1.11.3.min.js"></script>
<script src="https://code.jquery.com/jquery-migrate-1.2.1.min.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.4/jquery.min.js"></script>
<script src="./client/lib/jquery-ui.min.js"></script>
<script src="./client/lib/jquery.svg.min.js"></script>
<script src="./client/lib/jquery.svgdom.min.js"></script>
<script src="./client/lib/jquery.sprintf.js"></script>
<script src="./client/lib/jquery.json.min.js"></script>
<script src="./client/lib/webfont.js"></script>
<script type="module" src="index.js"></script>
</body>