root/mobile/login_form.php

Revision 1634, 0.9 kB (checked in by Andrew Dolgov <fox@bah.spb.su>, 2 years ago)

[project @ mobile: sync login stuff and such with desktop version]

Line 
1 <html>
2 <head>
3     <title>Tiny Tiny RSS : Login</title>
4     <link rel="stylesheet" type="text/css" href="mobile.css">
5     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
6 </head>
7
8 <body>
9
10     <div id="content">
11     <div id="heading">Tiny Tiny RSS</div>
12
13     <form action="tt-rss.php" method="POST">
14     <input type="hidden" name="rt" value="<?php echo $_GET['rt'] ?>">
15     <input type="hidden" name="login_action" value="do_login">
16
17     <?php if ($_SESSION['login_error_msg']) { ?>
18         <div class="loginError"><?php echo $_SESSION['login_error_msg'] ?></div>
19         <?php $_SESSION['login_error_msg'] = ""; ?>
20     <?php } ?>
21
22     <table>
23         <tr><td align='right'><?php echo __("Login:") ?></td><td><input name="login"></td>
24         <tr><td align='right'><?php echo __("Password:") ?></td><td><input type="password" name="password"></tr>
25
26         <tr><td colspan='2'>
27             <input type="submit" class="button" value="Login">
28         </td></tr>
29         </table>
30     </form>
31     </div>
32
33 </body>
34 </html>
35
36
Note: See TracBrowser for help on using the browser.