]> git.wh0rd.org - tt-rss.git/blame - mobile/login_form.php
Resource files for Latvian were added
[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
97acbaf1
AD
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">
793185a9 36
3518718b 37 <fieldset>
793185a9 38
3518718b
AD
39 <div class="row">
40 <label><?php echo __("Login:") ?></label>
9435c4dc 41 <input type="text" autocapitalize="off" name="login">
3518718b 42 </div>
7c33dbd4 43
3518718b
AD
44 <div class="row">
45 <label><?php echo __("Password:") ?></label>
46 <input type="password" name="password">
47 </div>
48
49 </fieldset>
310fa2dd
AD
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
793185a9 54 </form>
793185a9
AD
55
56</body>
57</html>
58