]> git.wh0rd.org - tt-rss.git/blame - mobile/login_form.php
implement search in pref-filters
[tt-rss.git] / mobile / login_form.php
CommitLineData
3518718b
AD
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">
793185a9 5<head>
3518718b
AD
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"/>
793185a9
AD
13</head>
14
7c33dbd4 15
3518718b
AD
16<script type="text/javascript">
17function do_login() {
18 var f = document.forms['login'];
19 f.submit();
7c33dbd4 20}
7c33dbd4
AD
21</script>
22
793185a9
AD
23<body>
24
3518718b
AD
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>
793185a9 30
e331188f 31 <form target="_self" title="Login" action="index.php" id="login" class="panel" method="post" name="login" selected="true">
793185a9 32
3518718b 33 <fieldset>
793185a9 34
3518718b 35 <input type="hidden" name="login_action" value="do_login">
793185a9 36
3518718b
AD
37 <div class="row">
38 <label><?php echo __("Login:") ?></label>
39 <input type="text" name="login">
40 </div>
7c33dbd4 41
3518718b
AD
42 <div class="row">
43 <label><?php echo __("Password:") ?></label>
44 <input type="password" name="password">
45 </div>
46
47 </fieldset>
310fa2dd
AD
48
49 <div align='center'><a target='_self' href='<?php echo get_self_url_prefix() ?>/index.php?mobile=false'>
50 <?php echo __("Open regular version") ?></a>
51
793185a9 52 </form>
793185a9
AD
53
54</body>
55</html>
56