-
Notifications
You must be signed in to change notification settings - Fork 3
/
index.html
41 lines (38 loc) · 1.36 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
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>Castnow Webserver</title>
<link href="./static/css/main.css" rel="stylesheet" type="text/css">
<link href="./static/css/bootstrap.min.css" rel="stylesheet" type="text/css">
</head>
<body>
<div id="app" class="container">
<button id="menubtn"
class="btn"
@click="showMenu = true">
<span id="menuicon" class="glyphicon glyphicon-menu-hamburger"></span>
</button>
<sidebar :show.sync="showMenu" placement="right" header="History" :width="350">
...
</sidebar>
<div class="row">
<div class="col-sm-12">
<h1 class="text-center">Castnow Webserver!</h1>
</div>
<div class="col-sm-12">
<bs-input :value.sync="casturl" type="text" placeholder="URL" class="casturl"></bs-input>
</div>
<div class="col-sm-12 text-center">
<v-select :value.sync="params" :options="options" options-value="val" multiple justified required clear-button></v-select>
<button type="submit" v-on:click="cast" class="btn btn-default cast-btn">Cast!</button>
</div>
</div>
</div>
<script src="./static/js/vue.js"></script>
<script src="./static/js/vue-strap.js"></script>
<script src="https://cdn.jsdelivr.net/vue.resource/1.0.3/vue-resource.min.js"></script>
<script src="./static/js/app.js"></script>
</body>
</html>