2013-05-29 11:41:19 +00:00
|
|
|
<?php startup_gettext(); ?>
|
2007-03-01 09:43:54 +00:00
|
|
|
<html>
|
|
|
|
<head>
|
|
|
|
<title>Tiny Tiny RSS : Login</title>
|
2017-11-29 15:55:12 +00:00
|
|
|
<?php echo stylesheet_tag("css/default.css") ?>
|
2007-03-01 09:43:54 +00:00
|
|
|
<link rel="shortcut icon" type="image/png" href="images/favicon.png">
|
|
|
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
2014-01-28 11:32:19 +00:00
|
|
|
<?php
|
|
|
|
foreach (array("lib/prototype.js",
|
|
|
|
"lib/dojo/dojo.js",
|
|
|
|
"lib/dojo/tt-rss-layer.js",
|
2018-12-02 15:38:27 +00:00
|
|
|
"js/common.js",
|
2014-01-28 11:32:19 +00:00
|
|
|
"errors.php?mode=js") as $jsfile) {
|
|
|
|
|
|
|
|
echo javascript_tag($jsfile);
|
|
|
|
|
|
|
|
} ?>
|
|
|
|
|
2012-09-10 16:15:45 +00:00
|
|
|
<script type="text/javascript">
|
2013-05-28 20:40:17 +00:00
|
|
|
require({cache:{}});
|
2012-09-10 16:15:45 +00:00
|
|
|
</script>
|
|
|
|
</head>
|
2008-06-24 07:43:20 +00:00
|
|
|
|
2018-12-04 20:17:35 +00:00
|
|
|
<body class="flat ttrss_main ttrss_login">
|
2012-09-10 16:15:45 +00:00
|
|
|
|
|
|
|
<script type="text/javascript">
|
2018-12-04 20:17:35 +00:00
|
|
|
require(['dojo/parser', "dojo/ready", 'dijit/form/Button','dijit/form/CheckBox', 'dijit/form/Form',
|
2018-12-03 06:33:44 +00:00
|
|
|
'dijit/form/Select','dijit/form/TextBox','dijit/form/ValidationTextBox'],function(parser, ready){
|
|
|
|
ready(function() {
|
|
|
|
parser.parse();
|
2012-09-10 16:15:45 +00:00
|
|
|
|
2018-12-03 06:33:44 +00:00
|
|
|
dijit.byId("bw_limit").attr("checked", Cookie.get("ttrss_bwlimit") == 'true');
|
2018-12-04 20:17:35 +00:00
|
|
|
dijit.byId("login").focus();
|
2018-12-03 06:33:44 +00:00
|
|
|
});
|
|
|
|
});
|
2010-01-25 20:12:08 +00:00
|
|
|
|
2010-01-13 15:31:51 +00:00
|
|
|
function fetchProfiles() {
|
2018-12-04 20:17:35 +00:00
|
|
|
xhrJson("public.php", { op: "getprofiles", login: dijit.byId("login").attr('value') },
|
|
|
|
(reply) => {
|
|
|
|
const profile = dijit.byId('profile');
|
|
|
|
|
|
|
|
profile.removeOption(profile.getOptions());
|
|
|
|
|
|
|
|
reply.each((p) => {
|
|
|
|
profile
|
|
|
|
.attr("disabled", false)
|
|
|
|
.addOption(p);
|
|
|
|
});
|
|
|
|
});
|
2010-01-13 15:31:51 +00:00
|
|
|
}
|
|
|
|
|
2008-10-31 07:01:16 +00:00
|
|
|
function gotoRegForm() {
|
|
|
|
window.location.href = "register.php";
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2008-06-24 07:43:20 +00:00
|
|
|
function bwLimitChange(elem) {
|
2018-12-03 10:38:13 +00:00
|
|
|
Cookie.set("ttrss_bwlimit", elem.checked,
|
|
|
|
<?php print SESSION_COOKIE_LIFETIME ?>);
|
2008-06-24 07:43:20 +00:00
|
|
|
}
|
2012-09-10 16:15:45 +00:00
|
|
|
</script>
|
2008-06-24 07:43:20 +00:00
|
|
|
|
2012-09-10 16:15:45 +00:00
|
|
|
<?php $return = urlencode($_SERVER["REQUEST_URI"]) ?>
|
2007-08-20 05:10:03 +00:00
|
|
|
|
2012-09-10 16:15:45 +00:00
|
|
|
<form action="public.php?return=<?php echo $return ?>"
|
|
|
|
dojoType="dijit.form.Form" method="POST" id="loginForm" name="loginForm">
|
2007-08-20 05:10:03 +00:00
|
|
|
|
2012-09-10 16:15:45 +00:00
|
|
|
<input dojoType="dijit.form.TextBox" style="display : none" name="op" value="login">
|
2007-08-20 05:10:03 +00:00
|
|
|
|
2012-09-10 16:15:45 +00:00
|
|
|
<div class='header'>
|
|
|
|
<img src="images/logo_wide.png">
|
|
|
|
</div>
|
2007-11-21 17:43:55 +00:00
|
|
|
|
2012-09-10 16:15:45 +00:00
|
|
|
<div class='form'>
|
2007-03-01 09:43:54 +00:00
|
|
|
|
2012-09-10 16:15:45 +00:00
|
|
|
<fieldset>
|
2012-09-10 16:37:41 +00:00
|
|
|
<?php if ($_SESSION["login_error_msg"]) { ?>
|
|
|
|
<div class="row-error">
|
|
|
|
<?php echo $_SESSION["login_error_msg"] ?>
|
|
|
|
</div>
|
|
|
|
<?php $_SESSION["login_error_msg"] = ""; ?>
|
|
|
|
<?php } ?>
|
2012-09-10 16:15:45 +00:00
|
|
|
<div class="row">
|
|
|
|
<label><?php echo __("Login:") ?></label>
|
2018-12-04 20:17:35 +00:00
|
|
|
<input name="login" id="login" dojoType="dijit.form.TextBox" type="text"
|
2012-09-10 15:01:06 +00:00
|
|
|
onchange="fetchProfiles()" onfocus="fetchProfiles()" onblur="fetchProfiles()"
|
2012-09-10 16:37:41 +00:00
|
|
|
style="width : 220px"
|
2012-09-19 18:18:30 +00:00
|
|
|
required="1"
|
2012-09-10 16:15:45 +00:00
|
|
|
value="<?php echo $_SESSION["fake_login"] ?>" />
|
|
|
|
</div>
|
|
|
|
|
2013-04-23 18:19:09 +00:00
|
|
|
|
2012-09-10 16:15:45 +00:00
|
|
|
<div class="row">
|
|
|
|
<label><?php echo __("Password:") ?></label>
|
2012-09-19 18:18:30 +00:00
|
|
|
<input type="password" name="password" required="1"
|
2018-12-04 20:17:35 +00:00
|
|
|
dojoType="dijit.form.TextBox"
|
2015-08-12 06:28:38 +00:00
|
|
|
style="width : 220px" class="input input-text"
|
2012-09-10 16:15:45 +00:00
|
|
|
value="<?php echo $_SESSION["fake_password"] ?>"/>
|
2013-03-22 10:50:02 +00:00
|
|
|
<label></label>
|
2013-05-18 22:20:44 +00:00
|
|
|
<?php if (strpos(PLUGINS, "auth_internal") !== FALSE) { ?>
|
2013-03-22 10:50:02 +00:00
|
|
|
<a class='forgotpass' href="public.php?op=forgotpass"><?php echo __("I forgot my password") ?></a>
|
2013-05-18 22:20:44 +00:00
|
|
|
<?php } ?>
|
2012-09-10 16:15:45 +00:00
|
|
|
</div>
|
|
|
|
|
2013-04-23 18:19:09 +00:00
|
|
|
|
2012-09-10 16:15:45 +00:00
|
|
|
<div class="row">
|
|
|
|
<label><?php echo __("Profile:") ?></label>
|
2010-01-13 15:31:51 +00:00
|
|
|
|
2018-12-04 20:17:35 +00:00
|
|
|
<select disabled='disabled' name="profile" id="profile" dojoType='dijit.form.Select'
|
2012-09-10 16:37:41 +00:00
|
|
|
style='width : 220px; margin : 0px'>
|
2018-12-04 20:17:35 +00:00
|
|
|
<option><?php echo __("Default profile") ?></option></select>
|
2010-01-13 15:31:51 +00:00
|
|
|
|
2012-09-10 16:15:45 +00:00
|
|
|
</div>
|
2008-04-30 15:30:27 +00:00
|
|
|
|
2012-09-10 16:15:45 +00:00
|
|
|
<div class="row">
|
|
|
|
<label> </label>
|
|
|
|
<input dojoType="dijit.form.CheckBox" name="bw_limit" id="bw_limit" type="checkbox"
|
|
|
|
onchange="bwLimitChange(this)">
|
2013-04-24 15:13:11 +00:00
|
|
|
<label id="bw_limit_label" style='display : inline' for="bw_limit"><?php echo __("Use less traffic") ?></label>
|
|
|
|
</div>
|
|
|
|
|
2013-05-28 20:40:17 +00:00
|
|
|
<div dojoType="dijit.Tooltip" connectId="bw_limit_label" position="below" style="display:none">
|
2018-12-03 10:38:13 +00:00
|
|
|
<?php echo __("Does not display images in articles, reduces automatic refreshes."); ?>
|
2012-09-10 16:15:45 +00:00
|
|
|
</div>
|
|
|
|
|
2013-04-04 13:59:04 +00:00
|
|
|
<?php if (SESSION_COOKIE_LIFETIME > 0) { ?>
|
2013-03-28 05:48:58 +00:00
|
|
|
|
|
|
|
<div class="row">
|
|
|
|
<label> </label>
|
|
|
|
<input dojoType="dijit.form.CheckBox" name="remember_me" id="remember_me" type="checkbox">
|
|
|
|
<label style='display : inline' for="remember_me"><?php echo __("Remember me") ?></label>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<?php } ?>
|
|
|
|
|
2012-09-10 16:15:45 +00:00
|
|
|
<div class="row" style='text-align : right'>
|
|
|
|
<button dojoType="dijit.form.Button" type="submit"><?php echo __('Log in') ?></button>
|
2009-01-19 07:13:36 +00:00
|
|
|
<?php if (defined('ENABLE_REGISTRATION') && ENABLE_REGISTRATION) { ?>
|
2012-09-10 16:15:45 +00:00
|
|
|
<button onclick="return gotoRegForm()" dojoType="dijit.form.Button">
|
2010-01-12 15:50:08 +00:00
|
|
|
<?php echo __("Create new account") ?></button>
|
2008-04-30 15:30:27 +00:00
|
|
|
<?php } ?>
|
2012-09-10 16:15:45 +00:00
|
|
|
</div>
|
2008-04-30 15:30:27 +00:00
|
|
|
|
2012-09-10 16:15:45 +00:00
|
|
|
</fieldset>
|
2008-06-24 07:43:20 +00:00
|
|
|
|
|
|
|
|
2012-09-10 16:15:45 +00:00
|
|
|
</div>
|
2008-06-24 07:43:20 +00:00
|
|
|
|
2012-09-10 16:15:45 +00:00
|
|
|
<div class='footer'>
|
2011-01-25 12:15:30 +00:00
|
|
|
<a href="http://tt-rss.org/">Tiny Tiny RSS</a>
|
|
|
|
© 2005–<?php echo date('Y') ?> <a href="http://fakecake.org/">Andrew Dolgov</a>
|
2012-09-10 16:15:45 +00:00
|
|
|
</div>
|
2007-03-01 09:43:54 +00:00
|
|
|
|
|
|
|
</form>
|
|
|
|
|
2007-11-17 07:25:37 +00:00
|
|
|
</body></html>
|