-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathindex.html
63 lines (51 loc) · 1.83 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>guiHive -- Take control over your eHive production system!</title>
<!-- STYLES -->
<!-- Local CSS style -->
<link rel="stylesheet" href="./styles/main.css" type="text/css" />
<!-- JS CODE -->
<!-- Local JQuery -->
<script src="./lib/jquery.min.js"></script> <!-- 1.9.1 -->
<script src="./lib/jquery-ui.min.js"></script> <!-- 1.10.1 -->
<!-- Local JQuery-URL-Parser -->
<script src="./lib/jQuery-URL-Parser/purl.js"></script>
<!-- Local JQuery-Cookie -->
<script src="./lib/jquery.cookie.js"></script>
<!-- Twitter bootstrap JS -->
<script src="./lib/bootstrap/js/bootstrap.min.js"></script>
<!-- Local javascripts -->
<script src="./javascript/version_picker.js"></script>
</head>
<body>
<!-- We need the modal for autoconnection -->
<div class="modal hide fade" id="password-id">
<div class="modal-header">
<p>Insert your mysql password:</p>
</div>
<div class="modal-body">
<input id="mysql_password" type="password" />
</div>
<div class="modal-footer">
<button id="set_mysql_passwd" class="btn btn-primary">Ok</button>
</div>
</div>
<div id="container">
<div class="page-header">
<h1 class="center">guiHive</h1>
<h3 class="center">A Graphic User Interface for the eHive Production System</h3>
</div>
<div class="centered_div" id="db_connection">
<h4 class="center">Connect to your database</h4>
<p>URL: <input type="text" id="db_url" name="db_url" size="80" placeholder="driver://username:password@server:port/database_name"/>
<input type="button" value="Connect" id="Connect" class="btn"/>
<span id="refreshing"></span>
</p>
</div>
<div class="centered_div" id="cached_connections">
</div>
</div>
</body>
</html>