2013-05-29 11:41:19 +00:00
|
|
|
<?php startup_gettext(); ?>
|
2019-02-23 10:49:40 +00:00
|
|
|
<!DOCTYPE html>
|
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
|
|
|
|
2019-02-19 16:46:09 +00:00
|
|
|
<body class="flat ttrss_utility 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
|
|
|
|
2019-03-04 17:38:39 +00:00
|
|
|
<?php $return = urlencode(make_self_url()) ?>
|
2007-08-20 05:10:03 +00:00
|
|
|
|
2019-02-19 11:27:53 +00:00
|
|
|
<div class="container">
|
2007-08-20 05:10:03 +00:00
|
|
|
|
2019-02-19 12:14:42 +00:00
|
|
|
<h1><?php echo "Authentication" ?></h1>
|
2019-02-19 16:46:09 +00:00
|
|
|
<div class="content">
|
2019-02-19 12:14:42 +00:00
|
|
|
<form action="public.php?return=<?php echo $return ?>"
|
|
|
|
dojoType="dijit.form.Form" method="POST">
|
2007-08-20 05:10:03 +00:00
|
|
|
|
2019-02-19 12:14:42 +00:00
|
|
|
<?php print_hidden("op", "login"); ?>
|
2007-11-21 17:43:55 +00:00
|
|
|
|
2019-02-19 12:14:42 +00:00
|
|
|
<?php if ($_SESSION["login_error_msg"]) { ?>
|
|
|
|
<?php echo format_error($_SESSION["login_error_msg"]) ?>
|
|
|
|
<?php $_SESSION["login_error_msg"] = ""; ?>
|
|
|
|
<?php } ?>
|
2007-03-01 09:43:54 +00:00
|
|
|
|
2019-02-19 12:14:42 +00:00
|
|
|
<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"] ?>"/>
|
|
|
|
</fieldset>
|
2019-11-13 08:52:25 +00:00
|
|
|
<?php if (strpos(PLUGINS, "auth_internal") !== FALSE) { ?>
|
|
|
|
<fieldset class="align-right">
|
|
|
|
<a href="public.php?op=forgotpass"><?php echo __("I forgot my password") ?></a>
|
|
|
|
</fieldset>
|
|
|
|
<?php } ?>
|
2012-09-10 16:15:45 +00:00
|
|
|
|
2019-02-19 12:14:42 +00:00
|
|
|
<fieldset>
|
|
|
|
<label><?php echo __("Profile:") ?></label>
|
2013-04-23 18:19:09 +00:00
|
|
|
|
2019-02-19 12:14:42 +00:00
|
|
|
<select disabled='disabled' name="profile" id="profile" dojoType='dijit.form.Select'>
|
|
|
|
<option><?php echo __("Default profile") ?></option>
|
|
|
|
</select>
|
|
|
|
</fieldset>
|
2012-09-10 16:15:45 +00:00
|
|
|
|
2019-02-19 12:14:42 +00:00
|
|
|
<fieldset class="narrow">
|
|
|
|
<label> </label>
|
2013-04-23 18:19:09 +00:00
|
|
|
|
2019-02-19 12:14:42 +00:00
|
|
|
<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>
|
2010-01-13 15:31:51 +00:00
|
|
|
|
2019-02-19 12:14:42 +00:00
|
|
|
<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>
|
2010-01-13 15:31:51 +00:00
|
|
|
|
2019-02-19 12:14:42 +00:00
|
|
|
<?php if (SESSION_COOKIE_LIFETIME > 0) { ?>
|
2008-04-30 15:30:27 +00:00
|
|
|
|
2019-02-19 11:27:53 +00:00
|
|
|
<fieldset class="narrow">
|
|
|
|
<label> </label>
|
2019-02-19 12:14:42 +00:00
|
|
|
<label>
|
|
|
|
<input dojoType="dijit.form.CheckBox" name="remember_me" id="remember_me" type="checkbox">
|
|
|
|
<?php echo __("Remember me") ?>
|
|
|
|
</label>
|
2019-02-19 11:27:53 +00:00
|
|
|
</fieldset>
|
2012-09-10 16:15:45 +00:00
|
|
|
|
2019-02-19 12:14:42 +00:00
|
|
|
<?php } ?>
|
2013-03-28 05:48:58 +00:00
|
|
|
|
2019-02-19 12:14:42 +00:00
|
|
|
<hr/>
|
2013-03-28 05:48:58 +00:00
|
|
|
|
2019-02-19 12:14:42 +00:00
|
|
|
<fieldset class="align-right">
|
|
|
|
<label> </label>
|
2013-03-28 05:48:58 +00:00
|
|
|
|
2019-02-19 12:14:42 +00:00
|
|
|
<button dojoType="dijit.form.Button" type="submit" class="alt-primary"><?php echo __('Log in') ?></button>
|
2008-06-24 07:43:20 +00:00
|
|
|
|
2019-02-19 12:14:42 +00:00
|
|
|
<?php if (defined('ENABLE_REGISTRATION') && ENABLE_REGISTRATION) { ?>
|
|
|
|
<button onclick="return gotoRegForm()" dojoType="dijit.form.Button">
|
|
|
|
<?php echo __("Create new account") ?></button>
|
|
|
|
<?php } ?>
|
|
|
|
</fieldset>
|
2007-03-01 09:43:54 +00:00
|
|
|
|
2019-02-19 12:14:42 +00:00
|
|
|
</form>
|
2019-02-19 11:27:53 +00:00
|
|
|
</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>
|
2007-03-01 09:43:54 +00:00
|
|
|
|
2019-02-19 11:27:53 +00:00
|
|
|
</body>
|
|
|
|
</html>
|