ttrss/login_form.php

95 lines
2.8 KiB
PHP
Raw Normal View History

2007-03-01 10:43:54 +01:00
<html>
<head>
<title>Tiny Tiny RSS : Login</title>
<link rel="stylesheet" type="text/css" href="tt-rss.css">
<link rel="shortcut icon" type="image/png" href="images/favicon.png">
<!--[if gte IE 5.5000]>
<script type="text/javascript" src="pngfix.js"></script>
<![endif]-->
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<script type="text/javascript" src="functions.js"></script>
2007-03-01 10:43:54 +01:00
</head>
<body>
<script type="text/javascript">
function init() {
if (arguments.callee.done) return;
arguments.callee.done = true;
var login = document.forms["loginForm"].login;
login.focus();
}
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);
}
}
2007-03-01 10:43:54 +01:00
</script>
<script type="text/javascript">
if (document.addEventListener) {
document.addEventListener("DOMContentLoaded", init, null);
}
window.onload = init;
</script>
<form action="" method="POST" name="loginForm">
<input type="hidden" name="login_action" value="do_login">
<table width="100%" class="loginForm2">
<tr>
<td class="loginTop" valign="bottom" align="left">
<img src="images/ttrss_logo_big.png" alt="Logo">
</td>
</tr><tr>
<td align="center" valign="middle" class="loginMiddle" height="100%">
2007-03-02 11:48:46 +01:00
<?php if ($_SESSION['login_error_msg']) { ?>
<div class="loginError"><?php echo $_SESSION['login_error_msg'] ?></div>
<?php $_SESSION['login_error_msg'] = ""; ?>
2007-03-01 10:43:54 +01:00
<?php } ?>
<table>
2007-03-05 13:50:46 +01:00
<tr><td align="right"><?php echo __("Login:") ?></td>
2007-03-01 10:43:54 +01:00
<td align="right"><input name="login"></td></tr>
2007-03-05 13:50:46 +01:00
<tr><td align="right"><?php echo __("Password:") ?></td>
2007-03-01 10:43:54 +01:00
<td align="right"><input type="password" name="password"></td></tr>
2007-08-11 16:25:51 +02:00
<tr><td align="right"><?php echo __("Language:") ?></td>
<td align="right">
<?php
print_select_hash("language", $_COOKIE["ttrss_lang"], get_translations(),
"style='width : 100%' onchange='languageChange(this)'");
2007-08-11 16:25:51 +02:00
?>
</td></tr>
2007-03-02 12:05:17 +01:00
<!-- <tr><td colspan="2">
2007-03-01 10:43:54 +01:00
<input type="checkbox" name="remember_me" id="remember_me">
<label for="remember_me">Remember me on this computer</label>
2007-03-02 12:05:17 +01:00
</td></tr> -->
2007-03-01 10:43:54 +01:00
<tr><td colspan="2" align="right" class="innerLoginCell">
<input type="submit" class="button" value="Login" name='click'>
2007-03-01 10:43:54 +01:00
<input type="hidden" name="action" value="login">
<input type="hidden" name="rt"
value="<?php if ($return_to != 'none') { echo $return_to; } ?>">
</td></tr>
</table>
</td>
</tr><tr>
<td align="center" class="loginBottom">
<a href="http://tt-rss.spb.ru/">Tiny Tiny RSS</a> &copy; 2005-2007 <a href="http://bah.org.ru/">Andrew Dolgov</a>
</td>
</tr>
</table>
</form>