-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
182 lines (162 loc) · 7.42 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="css/bulma.min.css">
<link rel="stylesheet" href="css/custom.css">
<!-- <script href="js/renderer.js"></script> -->
<title>insights</title>
</head>
<body>
<!--LOGIN-->
<section class="section has-background-custom" id="loginScreen">
<h1 class="title has-text-info has-text-centered" id="extTitle">Insights</h1>
<div class="field">
<label class="label has-text-info">email</label>
<div class="control">
<input class="input" type="text" placeholder="email" id="userEmail">
</div>
</div>
<div class="field">
<label class="label has-text-info">key</label>
<div class="control">
<input class="input" type="text" placeholder="key" id="userKey">
</div>
</div>
<!-- Need to fix erro below-->
<!-- <p class="help is-danger" id="usernameError" style="display: none;">Username or Password is incorrect</p> -->
<div class="field">
<div class="control">
<button class="button is-info is-outlined" id="loginButton">Login</button>
</div>
</div>
</section>
<section class="section has-background-black" id="errata">
<div class="container" id="errors" style="max-height: 200px; overflow-y: scroll;"><p class="has-text-success">system nominal</p></div>
</section>
<!--MAIN-->
<section class="section has-background-black" id="mainSection">
<div class="columns" id="mainColumns">
<!-- Title -->
<!-- <aside class="menu"> -->
<nav class="level is-mobile">
<div class="level-item" style="flex:none">
<h1 class="title has-text-info-light">insights</h1>
</div>
<div>
</div>
<div class="level-item"style="flex:none">
<!-- Hamburger Menu -->
<div>
<a role="button" class="navbar-burger has-text-info is-pulled-right" aria-label="menu" aria-expanded="false" data-target="navbarBasicExample" id="burger">
<span aria-hidden="true"></span>
<span aria-hidden="true"></span>
<span aria-hidden="true"></span>
<span aria-hidden="true"></span>
</a>
</div>
</div>
</nav>
</div>
<br/>
<div class="navbar-menu" id = "nav-links">
<div>
<!-- <a href="#" class="navbar-item has-text-info has-background-custom-ter" id="menuSearch">search</a> -->
<a href="#" class="navbar-item has-text-info has-background-custom " id="menuServices">services</a>
<a href="#" class="navbar-item has-text-info has-background-custom" id="menuProfile">profile</a>
</div>
</div>
<div class="column is-three-quarters">
<div class="box has-background-custom" id="matchBox">
<h1 class="title has-text-info">Search</h1>
<form action="">
<div class="field">
<!-- <label class="label">Search</label> -->
<div class="control">
<textarea class="textarea" placeholder="feed me" id="userSearch"></textarea>
</div>
</div>
<div class="field">
<div class="control">
<button class="button is-info is-outlined" id="searchButton" type="submit">search</button>
</div>
</div>
<div class="field">
<div class="control">
<div class="buttons are-small">
<button class="button is-black has-text-info-light" id="historyButton">history</button>
<button class="button is-black has-text-info-light" id="goToButton">go to</button>
<button class="button is-black has-text-info-light" id="uploadButton">upload</button>
</div>
</div>
</div>
</form>
</div>
</div>
</div>
</section>
<!--SERVICES-->
<section class="section has-background-custom" id="servicesView">
<h1 class="title has-text-info">Services</h1>
<div class="columns">
<div class="column">
<form>
<button class="button is-info is-pulled-left is-outlined">
back
</button>
</form>
</div>
<div class="column">
</div>
<div class="column">
<div class="column" id="servicesList">
<div class="card-list" id="cardList"></div>
</div>
</div>
</section>
<!--PROFILE-->
<section class="section has-background-custom" id="profileView">
<div class="columns">
<div class="column">
<h1 class="title has-text-info" style="margin:0px">Profile</h1>
<div class="box has-background-custom" id="profileBox">
<!-- <h1 class="title">profile</h1> -->
<form>
<div class="field">
<label class="label has-text-info">server url</label>
<div class="control">
<input class="input" type="text" placeholder="url" id="editServerUrl">
</div>
</div>
<div class="field">
<label class="label has-text-info">email</label>
<div class="control">
<input class="input" type="text" placeholder="email" id="editUserEmail">
</div>
</div>
<div class="field">
<label class="label has-text-info">password</label>
<div class="control">
<input class="input" type="password" placeholder="password" id="editUserKey">
</div>
</div>
</br>
<div class="field">
<div class="control profileButtons" >
<button class="button is-info is-pulled-left is-outlined">
back
</button>
<button class="button is-info is-outlined" id="updateUserButton">
<span>Update</span>
</button>
</div>
</div>
</form>
</div>
</div>
</section>
</body>
<script type="module" src="js/renderer.js"></script>
<script type="module" src="js/staging.js"></script>
</html>