diff options
| author | schneefux <schneefux+commit@schneefux.xyz> | 2014-03-15 12:56:01 +0100 |
|---|---|---|
| committer | schneefux <schneefux+commit@schneefux.xyz> | 2016-08-15 19:46:41 +0200 |
| commit | 2b5c1a92d38d84c752243809cda21300f7e579ae (patch) | |
| tree | 199e01d39b4ed524e8000fc00d88b05e0e309510 /index.html | |
| parent | 0e267a97dd42e5381e7704e151057e674fa8e0c3 (diff) | |
| download | wvs-vplan-2b5c1a92d38d84c752243809cda21300f7e579ae.tar.gz wvs-vplan-2b5c1a92d38d84c752243809cda21300f7e579ae.zip | |
ersetze Brick mit jQuery Mobile; füge Ladebalken und mehr Requests hinzu
Diffstat (limited to 'index.html')
| -rw-r--r-- | index.html | 52 |
1 files changed, 23 insertions, 29 deletions
@@ -23,44 +23,38 @@ <!-- WARNING: for iOS 7, remove the width=device-width and height=device-height attributes. See https://issues.apache.org/jira/browse/CB-4323 --> <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" /> <link rel="stylesheet" type="text/css" href="css/index.css" /> - <link rel="stylesheet" type="text/css" href="css/brick-1.0.0.css" /> + <link rel="stylesheet" type="text/css" href="css/jquery.mobile-1.4.2.min.css" /> <title>WvS VPlan</title> </head> <body> - <div class="app"> - <x-flipbox id="viewFlipBox"> - <div> - <x-appbar> - <h1>WvS VPlan | Login</h1> - <button>=</button> - </x-appbar> - <x-layout class="viewLayout"> - <form action="javascript:login()"> - <section> - <input type="text" id="username" hint="Benutzername" autofocus required> - <input type="password" id="password" hint="Passwort" required> - <input type="submit" value="Einloggen" > - </section> - </form> - </x-layout> + <div class="app" data-role="content"> + <div id="title"> + <h1>WvS Vertretungsplan | Login</h1> + </div> + <div id="loginform"> + <form action="javascript:login()"> + <div data-role="fieldcontain"> + <label for="username">Benutzername</label> + <input type="text" id="username" hint="Benutzername" autofocus required> + <label for="password">Passwort</label> + <input type="password" id="password" hint="Passwort" required> + <input type="submit" value="Einloggen" > + </div> + </form> + </div> + <div class="loadingbar" id="loadingbar" style="display:none"> + Laden... <span class="progress-view" id="load-progress-view">0%</span> + <div class="loader"> + <div class="progress" id="load-progress"></div> </div> - <div> - <x-appbar> - <button onclick="javascript:document.getElementById('viewFlipBox').toggle();">←</button> - <h1>WvS VPlan | Vertretungsplan</h1> - <button>=</button> - </x-appbar> - <x-layout class="viewLayout"> - Hier steht der V-Plan. - </x-layout> - </div> - </x-flipbox> + </div> </div> <script type="text/javascript" src="phonegap.js"></script> <script type="text/javascript" src="js/index.js"></script> <script type="text/javascript"> app.initialize(); </script> - <script type="text/javascript" src="js/brick-1.0.0.js"></script> + <script type="text/javascript" src="js/jquery-2.1.0.min.js"></script> + <script type="text/javascript" src="js/jquery.mobile-1.4.2.min.js"></script> </body> </html> |
