-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
35 lines (33 loc) · 1.34 KB
/
index.html
File metadata and controls
35 lines (33 loc) · 1.34 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
34
35
<!DOCTYPE HTML>
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8">
<title>Optimod</title>
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="viewport" content="width=device-width, initial-scale=1">
<script src="bower_components/webcomponentsjs/webcomponents.min.js"></script>
<link rel="stylesheet" href="base.css" type="text/css" charset="utf-8">
<link rel="import" href="bower_components/font-roboto/roboto.html">
<link rel="import" href="bower_components/paper-button/paper-button.html">
<link rel="import" href="bower_components/core-toolbar/core-toolbar.html">
<link rel="import" href="bower_components/paper-icon-button/paper-icon-button.html">
</head>
<body unresolved>
<core-header-panel shadow>
<core-toolbar>
<span flex>Optimod Lyon</span>
<paper-icon-button icon="close" onclick="javascript:window.close()"></paper-icon-button>
</core-toolbar>
<div id="frame">
<paper-button raised center onclick="javascript:window.location.href = './supervisor.html'">
<core-icon icon="visibility"></core-icon>
Supervisor's view
</paper-button>
<paper-button raised center onclick="javascript:window.location.href = './driver.html'">
<core-icon icon="assignment"></core-icon>
Driver's view
</paper-button>
</div>
</core-header-panel>
</body>
</html>