-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
33 lines (31 loc) · 1.49 KB
/
index.html
File metadata and controls
33 lines (31 loc) · 1.49 KB
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
<html xmlns:v-on="http://www.w3.org/1999/xhtml">
<head>
<script src="/resources/jquery-3.3.1.js"></script>
<link rel="stylesheet" href="/resources/bootstrap-4.0.0-dist/css/bootstrap.min.css"/>
<script src="/resources/popper.min.js"></script>
<script src="/resources/vue.js"></script>
<link href="/resources/open-iconic/font/css/open-iconic-bootstrap.css" rel="stylesheet">
<script src="/resources/bootstrap-4.0.0-dist/js/bootstrap.min.js"></script>
<link href="/global.css" rel="stylesheet">
</head>
<body>
<div id="main-index" class="popupBody">
<header>
<h1><img class="logo" src="images/icon360.png" v-on:click="toggleLabView()"/>pibble</h1>
</header>
<div class="btn-group-vertical main-menu">
<div v-if="toggleLab">
<a href="/scrape/index.html" v-on:click="updatePageState('/scrape/index.html')" class="btn">Collect Data</a>
<a href="/ruleSets/index.html" v-on:click="updatePageState('/ruleSets/index.html')" class="btn">Create Rule Set</a>
<a href="#" v-on:click="dataTab(false)" class="btn main-menu-last">View/Export Data</a>
</div>
<div v-else>
<a href="/labrador/scrape/index.html" v-on:click="updatePageState('/labrador/scrape/index.html')" class="btn">Lab Scrape Data</a>
<a href="/labrador/export/dataView.html" v-on:click="dataTab(true)" class="btn main-menu-last">Lab Export/View Data</a>
</div>
</div>
<br/>
</div>
<script src="/index.js"></script>
</body>
</html>