|
|
|
<?php startup_gettext(); ?>
|
|
|
|
<!DOCTYPE html>
|
|
|
|
<html>
|
|
|
|
<head>
|
|
|
|
<title>Tiny Tiny RSS : Login</title>
|
|
|
|
<?php echo stylesheet_tag("css/default.css") ?>
|
|
|
|
<link rel="shortcut icon" type="image/png" href="images/favicon.png">
|
|
|
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
|
|
|
<?php
|
|
|
|
foreach (array("lib/prototype.js",
|
|
|
|
"lib/dojo/dojo.js",
|
|
|
|
"lib/dojo/tt-rss-layer.js",
|
|
|
|
"js/common.js",
|
|
|
|
"errors.php?mode=js") as $jsfile) {
|
|
|
|
|
|
|
|
echo javascript_tag($jsfile);
|
|
|
|
|
|
|
|
} ?>
|
|
|
|
|
|
|
|
<script type="text/javascript">
|
|
|
|
require({cache:{}});
|
|
|
|
</script>
|
|
|
|
</head>
|
|
|
|
|
|
|
|
<body class="flat ttrss_utility ttrss_login">
|
|
|
|
|
|
|
|
<script type="text/javascript">
|
|
|
|
require(['dojo/parser', "dojo/ready", 'dijit/form/Button','dijit/form/CheckBox', 'dijit/form/Form',
|
|
|
|
'dijit/form/Select','dijit/form/TextBox','dijit/form/ValidationTextBox'],function(parser, ready){
|
|
|
|
ready(function() {
|
|
|
|
parser.parse();
|
|
|
|
|
|
|
|
dijit.byId("bw_limit").attr("checked", Cookie.get("ttrss_bwlimit") == 'true');
|
|
|
|
dijit.byId("login").focus();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
function fetchProfiles() {
|
|
|
|
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);
|
|
|
|
});
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
function gotoRegForm() {
|
|
|
|
window.location.href = "register.php";
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
function bwLimitChange(elem) {
|
|
|
|
Cookie.set("ttrss_bwlimit", elem.checked,
|
|
|
|
<?php print SESSION_COOKIE_LIFETIME ?>);
|
|
|
|
}
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<?php $return = urlencode($_SERVER["REQUEST_URI"]) ?>
|
|
|
|
|
|
|
|
<div class="container">
|
|
|
|
|
|
|
|
<h1><?php echo "Authentication" ?></h1>
|
|
|
|
<div class="content">
|
|
|
|
<form action="public.php?return=<?php echo $return ?>"
|
|
|
|
dojoType="dijit.form.Form" method="POST">
|
|
|
|
|
|
|
|
<?php print_hidden("op", "login"); ?>
|
|
|
|
|
|
|
|
<?php if ($_SESSION["login_error_msg"]) { ?>
|
|
|
|
<?php echo format_error($_SESSION["login_error_msg"]) ?>
|
|
|
|
<?php $_SESSION["login_error_msg"] = ""; ?>
|
|
|
|
<?php } ?>
|
|
|
|
|
|
|
|
<fieldset>
|
|
|
|
<label><?php echo __("Login:") ?></label>
|
|
|
|
<input name="login" id="login" dojoType="dijit.form.TextBox" type="text"
|
|
|
|
onchange="fetchProfiles()" onfocus="fetchProfiles()" onblur="fetchProfiles()"
|
|
|
|
required="1" value="<?php echo $_SESSION["fake_login"] ?>" />
|
|
|
|
</fieldset>
|
|
|
|
|
|
|
|
<fieldset>
|
|
|
|
<label><?php echo __("Password:") ?></label>
|
|
|
|
|
|
|
|
<input type="password" name="password" required="1"
|
|
|
|
dojoType="dijit.form.TextBox"
|
|
|
|
class="input input-text"
|
|
|
|
value="<?php echo $_SESSION["fake_password"] ?>"/>
|
|
|
|
|
|
|
|
<?php if (strpos(PLUGINS, "auth_internal") !== FALSE) { ?>
|
|
|
|
<a href="public.php?op=forgotpass"><?php echo __("I forgot my password") ?></a>
|
|
|
|
<?php } ?>
|
|
|
|
</fieldset>
|
|
|
|
|
|
|
|
<fieldset>
|
|
|
|
<label><?php echo __("Profile:") ?></label>
|
|
|
|
|
|
|
|
<select disabled='disabled' name="profile" id="profile" dojoType='dijit.form.Select'>
|
|
|
|
<option><?php echo __("Default profile") ?></option>
|
|
|
|
</select>
|
|
|
|
</fieldset>
|
|
|
|
|
|
|
|
<fieldset class="narrow">
|
|
|
|
<label> </label>
|
|
|
|
|
|
|
|
<label id="bw_limit_label"><input dojoType="dijit.form.CheckBox" name="bw_limit" id="bw_limit"
|
|
|
|
type="checkbox" onchange="bwLimitChange(this)">
|
|
|
|
<?php echo __("Use less traffic") ?></label>
|
|
|
|
</fieldset>
|
|
|
|
|
|
|
|
<div dojoType="dijit.Tooltip" connectId="bw_limit_label" position="below" style="display:none">
|
|
|
|
<?php echo __("Does not display images in articles, reduces automatic refreshes."); ?>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<?php if (SESSION_COOKIE_LIFETIME > 0) { ?>
|
|
|
|
|
|
|
|
<fieldset class="narrow">
|
|
|
|
<label> </label>
|
|
|
|
<label>
|
|
|
|
<input dojoType="dijit.form.CheckBox" name="remember_me" id="remember_me" type="checkbox">
|
|
|
|
<?php echo __("Remember me") ?>
|
|
|
|
</label>
|
|
|
|
</fieldset>
|
|
|
|
|
|
|
|
<?php } ?>
|
|
|
|
|
|
|
|
<hr/>
|
|
|
|
|
|
|
|
<fieldset class="align-right">
|
|
|
|
<label> </label>
|
|
|
|
|
|
|
|
<button dojoType="dijit.form.Button" type="submit" class="alt-primary"><?php echo __('Log in') ?></button>
|
|
|
|
|
|
|
|
<?php if (defined('ENABLE_REGISTRATION') && ENABLE_REGISTRATION) { ?>
|
|
|
|
<button onclick="return gotoRegForm()" dojoType="dijit.form.Button">
|
|
|
|
<?php echo __("Create new account") ?></button>
|
|
|
|
<?php } ?>
|
|
|
|
</fieldset>
|
|
|
|
|
|
|
|
</form>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="footer">
|
|
|
|
<a href="https://tt-rss.org/">Tiny Tiny RSS</a>
|
|
|
|
© 2005–<?php echo date('Y') ?> <a href="https://fakecake.org/">Andrew Dolgov</a>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
</body>
|
|
|
|
</html>
|