-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathindex.html
27 lines (27 loc) · 958 Bytes
/
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
<!DOCTYPE html>
<html>
<head>
<title>App Store</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<script src="javascripts/hiveapp-api-mock.js"></script>
<link rel="stylesheet" href="stylesheets/bootstrap.min.css">
<link rel="stylesheet" href="stylesheets/app-store.css">
</head>
<body>
<nav role="navigation">
<img src="images/logo.png" alt="logo" onclick="showRegistryChooser()">
<span>Hive App Store</span>
</nav>
<div class="spinner-container text-center">
<span class="glyphicon glyphicon-refresh spinner"></span>
</div>
<div id="registry-chooser" class="text-center">
Alternative app registry:
<input type="text" name="registry" id="registry">
<input type="button" name="refresh" id="refresh" value="Fetch" onclick="switchRegistry()">
</div>
<div class="list-group container">
</div>
<script src="javascripts/index.js"></script>
</body>
</html>