Initial commit
[progetti-gl-como:friendica-messenger.git] / www / index.html
1 <!DOCTYPE html>
2 <!--
3     Licensed to the Apache Software Foundation (ASF) under one
4     or more contributor license agreements.  See the NOTICE file
5     distributed with this work for additional information
6     regarding copyright ownership.  The ASF licenses this file
7     to you under the Apache License, Version 2.0 (the
8     "License"); you may not use this file except in compliance
9     with the License.  You may obtain a copy of the License at
10
11     http://www.apache.org/licenses/LICENSE-2.0
12
13     Unless required by applicable law or agreed to in writing,
14     software distributed under the License is distributed on an
15     "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
16      KIND, either express or implied.  See the License for the
17     specific language governing permissions and limitations
18     under the License.
19 -->
20 <html>
21     <head>
22                 <meta charset="utf-8" />
23                 <meta name="format-detection" content="telephone=no" />
24                 <meta name="msapplication-tap-highlight" content="no" />
25                 <!-- WARNING: for iOS 7, remove the width=device-width and height=device-height attributes. See https://issues.apache.org/jira/browse/CB-4323 -->
26                 <meta name="viewport" content="user-scalable=no, initial-scale=1, maximum-scale=1, minimum-scale=1, width=device-width, height=device-height, target-densitydpi=device-dpi" />
27
28                 <!-- building blocks -->
29                 <link rel="stylesheet" type="text/css" href="bower_components/Building-Blocks/style/headers.css">
30                 <link rel="stylesheet" type="text/css" href="bower_components/Building-Blocks/style/drawer.css">
31                 <link rel="stylesheet" type="text/css" href="bower_components/Building-Blocks/style/lists.css">
32                 <link rel="stylesheet" type="text/css" href="bower_components/Building-Blocks/style/input_areas.css">
33                 <link rel="stylesheet" type="text/css" href="bower_components/Building-Blocks/style/progress_activity.css">
34                 <link rel="stylesheet" type="text/css" href="bower_components/Building-Blocks/transitions.css">
35                 <link rel="stylesheet" type="text/css" href="bower_components/Building-Blocks/util.css">
36
37                 <link rel="stylesheet" type="text/css" href="css/index.css" />
38                 <title>Friendica Messenger</title>
39     </head>
40     <body>
41                 <section id="inboxPage" data-position="current">
42                         <section data-type="sidebar">
43                                 <header>
44                                         <menu type="toolbar">
45                                         <a href="#">Done</a>
46                                         </menu>
47                                         <h1></h1>
48                                 </header>
49                                 <nav>
50                                         <ul>
51                                         <li><a href="#">Inbox</a></li>
52                                         </ul>
53                                         <ul>
54                                         <li><a href="#settings">Settings</a></li>
55                                         </ul>
56                                 </nav>
57                         </section>    
58                                 
59                 
60                         <section id="messageListPage" role="region">
61                                 <header class="fixed">
62                                         <a href="#"><span class="icon icon-menu">hide sidebar</span></a>
63                                         <a href="#messageListPage"><span class="icon icon-menu">show sidebar</span></a>
64                                         <h1>~F Messenger <em>inbox</em></h1>
65                                         <progress class="pack-activity" value="0" max="100"></progress>
66                                 </header>
67                                 <article class="scrollable header">
68                                         <section data-type="list">
69                                                 <ul id="messageList">
70                                                         
71                                                 </ul>
72                                         </section>
73                                 </article>
74                         </section>
75                 </section>
76                 
77                 <section id="messagePage" data-position="right" role="region">
78                         <header class="fixed">
79                                 <a href="#"><span class="icon icon-back">back</span></a>
80                                 <h1>Messages <em>.</em></h1>
81                                 <progress class="pack-activity" value="0" max="100"></progress>
82                         </header>
83                         <article class="scrollable header">
84                                 <section data-type="list" class="fullmessage">
85                                         <ul id="messages">
86                                                 
87                                         </ul>
88                                 </section>
89                         </article>
90                 </section>
91
92                 <section id="settingsPage" data-position="right" role="region" class="skin-organic">
93                         <header>
94                                 <a href="#"><span class="icon icon-back">back</span></a>
95                                 <h1>Settings</h1>
96                                 <progress class="pack-activity light" value="0" max="100"></progress>
97                         </header>
98                         <article class="content">
99                                 <header><h2>Connection settings</h2></header>
100                                 <form>
101                                         <p><input id="host" type="text" placeholder="Host" required="" value="" class="autoupdate" /></p>
102                                         <p><input id="user" type="text" placeholder="Username" required="" value="" class="autoupdate" /></p>
103                                         <p><input id="pass" type="password" placeholder="Password" required="" value="" class="autoupdate" /></p>
104                                 </form>
105                         </article>
106                 </section>              
107                 
108                 <script type="text/javascript" src="bower_components/zepto/zepto.min.js"></script>
109         <script type="text/javascript" src="bower_components/routie/dist/routie.min.js"></script>
110         <!-- <script type="text/javascript" src="cordova.js"></script> -->
111         <script type="text/javascript" src="js/index.js"></script>
112     </body>
113 </html>