initial checkin of modular app
[outofuni/modular.git] / app / www / index.html
1 <!DOCTYPE html>
2
3 <!--
4         modular: simple app to count whatever you like
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>Modular</title>
30
31                 <meta name="format-detection" content="telephone=no">
32                 <meta name="msapplication-tap-highlight" content="no">
33                 <meta name="viewport" content="user-scalable=no, initial-scale=1, maximum-scale=1, minimum-scale=1, width=device-width">
34
35                 <link rel="stylesheet" type="text/css" href="css/index.css">
36
37                 <!--
38                 <link rel="stylesheet" type="text/css"
39                       href="mobile/jquery.mobile-1.4.5.css">
40                 <script type="text/javascript"
41                         src="mobile/jquery.mobile-1.4.5.min.js"></script>
42                 -->
43
44                 <script type="text/javascript" src="cordova.js"></script>
45                 <script type="text/javascript" src="js/jquery.js"></script>
46                 <script type="text/javascript" src="js/jsutils/utils.js">
47                 </script>
48                 <script type="text/javascript" src="js/jsutils/idb.js">
49                 </script>
50                 <script type="text/javascript" src="js/config.js"></script>
51                 <script type="text/javascript" src="js/index.js"></script>
52         </head>
53         <body>
54                 <div id=main>
55                 </div>
56                 <div id=moddiag>
57                         <div class=mod>
58                                 <div class=mdhead>
59                                 Continue counting ...
60                                 </div>
61                                 <div id=mdcont class=mdmain>
62                                 </div>
63                         </div>
64                         <div class=mod>
65                                 <div class=mdhead>
66                                 New setup!
67                                 </div>
68                                 <div class=mdmain>
69                                         <div class=mdcline>Name</div>
70                                         <div class=mdcinput>
71                                                 <input id=mdiname value=New
72                                                        class=mdni type=text>
73                                         </div>
74                                         <div class=mdcline>Total</div>
75                                         <div class=mdcinput>
76                                                 <input id=mditot value=0
77                                                        min=1 max=99
78                                                        class=mdni type=number>
79                                         </div>
80                                         <div class=mdcline>Rows</div>
81                                         <div class=mdcinput>
82                                                 <input id=mdirows value=0
83                                                        min=1 max=99
84                                                        class=mdni type=number>
85                                         </div>
86                                         <div class=mdcline>Columns</div>
87                                         <div class=mdcinput>
88                                                 <input id=mdicols size=3 value=0
89                                                        min=1 max=99
90                                                        class=mdni type=number>
91                                         </div>
92                                         <div id=mdnc>
93                                         </div>
94                                 </div>
95                         </div>
96                 </div>
97         </body>
98 </html>
99