]> git.wh0rd.org - tt-rss.git/blob - mobile/login_form.php
some typing error corrections
[tt-rss.git] / mobile / login_form.php
1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
2 "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
3
4 <html xmlns="http://www.w3.org/1999/xhtml">
5 <head>
6 <title>Tiny Tiny RSS</title>
7 <meta name="viewport" content="width=device-width; initial-scale=1.0; maximum-scale=1.0; user-scalable=0;"/>
8 <link rel="apple-touch-icon" href="../lib/iui/iui-logo-touch-icon.png" />
9 <meta name="apple-touch-fullscreen" content="YES" />
10 <style type="text/css" media="screen">@import "../lib/iui/iui.css";</style>
11 <script type="application/x-javascript" src="../lib/iui/iui.js"></script>
12 <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
13 </head>
14
15
16 <script type="text/javascript">
17 function do_login() {
18 var f = document.forms['login'];
19 f.submit();
20 }
21 </script>
22
23 <body>
24
25 <div class="toolbar">
26 <h1 id="pageTitle"></h1>
27 <a id="backButton" class="button" href="#"></a>
28 <a class="button blueButton" onclick='do_login()'><?php echo __('Log in') ?></a>
29 </div>
30
31 <form target="_self" title="Login" id="login" class="panel" name="login" selected="true"
32 action="../public.php?return=<?php echo htmlspecialchars($_SERVER["REQUEST_URI"]) ?>"
33 method="post">
34
35 <input type="hidden" name="op" value="login">
36
37 <fieldset>
38
39 <div class="row">
40 <label><?php echo __("Login:") ?></label>
41 <input type="text" autocapitalize="off" name="login">
42 </div>
43
44 <div class="row">
45 <label><?php echo __("Password:") ?></label>
46 <input type="password" name="password">
47 </div>
48
49 </fieldset>
50
51 <div align='center'><a target='_self' href='<?php echo get_self_url_prefix() ?>/index.php?mobile=false'>
52 <?php echo __("Open regular version") ?></a>
53
54 </form>
55
56 </body>
57 </html>
58