summaryrefslogtreecommitdiff
path: root/mobile/login.php
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2006-03-27 06:56:37 +0100
committerAndrew Dolgov <[email protected]>2006-03-27 06:56:37 +0100
commitab1486d5ae1d8c64632b5b450a55ca071489abc0 (patch)
tree77923b6ec888becd0573d9c2bbfefa560b0007b4 /mobile/login.php
parentb750d48551e0d89f3f310773dc07ef73e51d3fcb (diff)
finalize basic mobile version
Diffstat (limited to 'mobile/login.php')
-rw-r--r--mobile/login.php22
1 files changed, 12 insertions, 10 deletions
diff --git a/mobile/login.php b/mobile/login.php
index 0e2d0c8b4..051a9eb5d 100644
--- a/mobile/login.php
+++ b/mobile/login.php
@@ -68,24 +68,26 @@
<body>
- <div class="main">
-
- <h1>Tiny Tiny RSS</h1>
+ <div id="content">
+ <div id="heading">Tiny Tiny RSS</div>
<form action="login.php" method="POST">
+ <input type="hidden" name="rt" value="<?= $_GET['rt'] ?>">
- Login: <input name="login"><br>
- Password: <input type="password" name="password"><br>
+ <table>
+ <tr><td align='right'>Login:</td><td><input name="login"></td>
+ <tr><td align='right'>Password:</td><td><input type="password" name="password"></tr>
- <input type="checkbox" name="remember_me" id="remember_me">
- <label for="remember_me">Remember me</label><br>
-
- <input type="submit" class="button" value="Login">
- <input type="hidden" name="rt" value="<?= $_GET['rt'] ?>">
+ <tr><td colspan='2'>
+ <input type="submit" class="button" value="Login">
+ <input type="checkbox" name="remember_me" id="remember_me">
+ <label for="remember_me">Remember me</label></td></tr>
+ </table>
</form>
</div>
+
</body>
</html>