summaryrefslogtreecommitdiff
path: root/mobile/classic/login_form.php
blob: bf4f77eac8f55fd6fa86e3ebabb9e4f264b0f3e8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
<html>
<head>
	<title>Tiny Tiny RSS : Login</title>
	<link rel="stylesheet" type="text/css" href="mobile.css">
	<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
	<script type="text/javascript" charset="utf-8" src="mobile.js"></script>
</head>

<script type="text/javascript">
function init() {

	if (arguments.callee.done) return;
	arguments.callee.done = true;		

	var login = document.forms["loginForm"].login;
	var click = document.forms["loginForm"].click;

	login.focus();
	click.disabled = false;

}
function languageChange(elem) {
	try {
		document.forms['loginForm']['click'].disabled = true;
	
		var lang = elem[elem.selectedIndex].value;
		setCookie("ttrss_lang", lang, <?php print SESSION_COOKIE_LIFETIME ?>);
		window.location.reload();
	} catch (e) {
		exception_error("languageChange", e);
	}
}

</script>

<script type="text/javascript">
if (document.addEventListener) {
	document.addEventListener("DOMContentLoaded", init, null);
}
window.onload = init;
</script>


<body>

	<div id="content">
	<div id="heading">Tiny Tiny RSS</div>

	<form action="index.php" method="POST" name="loginForm">
	<input type="hidden" name="rt" value="<?php echo $_GET['rt'] ?>">
	<input type="hidden" name="login_action" value="do_login">

	<?php if ($_SESSION['login_error_msg']) { ?>
		<div class="loginError"><?php echo $_SESSION['login_error_msg'] ?></div>
		<?php $_SESSION['login_error_msg'] = ""; ?>
	<?php } ?>

	<table>
		<tr><td align='right'><?php echo __("Login:") ?></td><td><input type="text" name="login"></td>
		<tr><td align='right'><?php echo __("Password:") ?></td><td><input type="password" name="password"></tr>

		<tr><td align="right"><?php echo __("Language:") ?></td>
		<td>
			<?php
				print_select_hash("language", $_COOKIE["ttrss_lang"], get_translations(),
					"style='width : 100%' onchange='languageChange(this)'");

			?>
		</td></tr>
		<tr><td colspan='2'>
		<input type="submit" class="button" value="<?php echo __('Log in') ?>" name="click">
		</td></tr>
		</table>
	</form>
	</div>

</body>
</html>