-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
147 lines (145 loc) · 5.79 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
<!DOCTYPE html>
<!--
* Copyright (c) 2014, Intel Corporation, Jaguar Land Rover
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*
-->
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8">
<meta name="viewport" content="width=1080, height=1920, user-scalable=no">
<link rel="stylesheet" href="./DNA_common/css/style.css">
<link rel="stylesheet" href="./css/hello_tizen.css">
<script type="text/javascript" src="./DNA_common/components/jQuery/jquery-1.8.2.js"></script>
<script type="text/javascript" src="./DNA_common/js/init.js"></script>
<script type="text/javascript" src="./js/main.js"></script>
<template id="item-template">
<tr>
<td id="item-title-field" class="cell-label">Name</td>
<td id="item-description-field" class="cell-label">Description</td>
<td>
<button type="button" class="item-delete-button">Delete</button>
</td>
</tr>
</template>
<title>HelloTizen</title>
</head>
<body>
<div id="top-bar"></div>
<div id="center-panel">
<div id="app">
<div id="clockElement"></div>
<!-- Begin App-Specific Content -->
<div id="app-content" class="scrollable-y">
<!-- Headings Demo -->
<div class="flex-parent space-between">
<div id="headings" class="flex-item">
<h1>Hello Tizen IVI</h1>
</div>
<div>
<button type="button" id="bluetoothRefreshButton" class="no-margin">Modal</button>
</div>
</div>
<!-- Form Demo 1: Single Submit Button -->
<section id="form-demo-1">
<h2>Form Demo 1: <small>Single Submit Button</small></h2>
<div class="box-inshadow no-margin">
<form id="add-item-form" class="flex-parent">
<div class="flex-item">
<div class="input-group">
<label for="item-title">Title</label>
<input type="text" id="item-title" class="text-input input-blue" name="item-title" placeholder="<input type='text'>">
</div>
<div class="input-group">
<label for="item-description">Description</label>
<textarea id="item-description" class="text-input input-blue" name="item-description" placeholder="<textarea>"></textarea>
</div>
</div>
<div>
<input id="add-item-button" type="button" class="no-margin" value="Add Item">
</div>
</form>
<!-- Form Demo 1 Output-->
<table id="item-table" class="hidden">
<thead>
<tr>
<th>
<p>name</p>
</th>
<th>
<p>description</p>
</th>
<th class="item-button-column">
<!-- Empty header for button -->
</th>
</tr>
</thead>
<tbody id="item-list"></tbody>
<tfoot></tfoot>
</table>
</div>
</section>
<!-- Form Demo 2: Centered Form -->
<section id="for-demo-2">
<h2>Form Demo 2: <small>Centered Form</small></h2>
<div class="box-inshadow no-margin">
<form class="center">
<div>
<textarea class="text-input input-blue" placeholder="<textarea>"></textarea>
</div>
<input type="button" value="Button" class="no-margin">
</form>
</div>
</section>
<!-- Form Demo 3: Input-Specific Buttons -->
<section id="form-demo-3">
<h2>Form Demo 3: <small>Input-Specific Buttons</small></h2>
<div class="box-inshadow no-margin">
<form>
<div class="input-group">
<label for="username-input">Username</label>
<input id="username-input" type="text" class="text-input input-yellow" placeholder="<input type='text'>">
<div class="clear-button"></div>
</div>
<div class="input-group">
<label for="user-password-input">Password</label>
<input id "user-password-input" type="password" class="text-input input-yellow" placeholder="<input type='password'>">
<div class="clear-button"></div>
</div>
<div>
<input class="submit" type="button" value="submit">
</div>
</form>
</div>
</section>
</div>
<!-- End App-Specific Content -->
<div id="keyboard-spacer" class="hidden"></div>
<!-- Modal Demo -->
<div id="modal" class="hidden">
<div class="modal">
<div class="modal-content box-out-orange">
<div class="close-button"></div>
<h6>warning!</h6>
<p>This is a demo of a modal view.</p>
<button type="button" id="exit-modal">Continue</button>
</div>
</div>
</div>
</div>
</div>
<div id="bottom-bar"></div>
<div id="alert"></div>
</body>
</html>