initial checkin (start dialog basically finished)
[outofuni/stafforg.git] / app / www / index.html
1 <!DOCTYPE html>
2
3 <!--
4         staofforg: crew organization app
5         author: hackbard@hackdaworld.org
6 -->
7
8 <!--
9     Licensed to the Apache Software Foundation (ASF) under one
10     or more contributor license agreements.  See the NOTICE file
11     distributed with this work for additional information
12     regarding copyright ownership.  The ASF licenses this file
13     to you under the Apache License, Version 2.0 (the
14     "License"); you may not use this file except in compliance
15     with the License.  You may obtain a copy of the License at
16
17     http://www.apache.org/licenses/LICENSE-2.0
18
19     Unless required by applicable law or agreed to in writing,
20     software distributed under the License is distributed on an
21     "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
22      KIND, either express or implied.  See the License for the
23     specific language governing permissions and limitations
24     under the License.
25 -->
26
27 <html>
28         <head>
29                 <title>StaffOrg</title>
30                 <meta charset="utf-8">
31                 <meta name="viewport" content="user-scalable=no, initial-scale=1, maximum-scale=1, minimum-scale=1, width=device-width">
32
33                 <link rel="stylesheet" type="text/css" href="css/index.css">
34
35                 <script type="text/javascript" src="cordova.js"></script>
36                 <script type="text/javascript" src="js/jquery.js"></script>
37                 <script type="text/javascript" src="js/jsutils/utils.js">
38                 </script>
39                 <script type="text/javascript" src="js/jsutils/idb.js">
40                 </script>
41                 <script type="text/javascript" src="js/jsutils/xhr.js">
42                 </script>
43                 <script type="text/javascript" src="js/index.js"></script>
44         </head>
45
46         <body>
47                 <div id=start>
48                         <button id=selclock class=startbtn>Time Clock</button>
49                         <button id=selroster class=startbtn>Roster</button>
50                         <button id=selideas class=startbtn>Brainstorming
51                         </button>
52                         <button id=seltodo class=startbtn>ToDo</button>
53                         <button id=seladmin class=startbtn>Administration
54                         </button>
55                 </div>
56                 <div id=clock></div>
57                 <div id=roster</div>
58                 <div id=ideas</div>
59                 <div id=todo</div>
60         </body>
61 </html>
62