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>
|
|
|
|
<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
|
2021-02-18 19:23:06 +00:00
|
|
|
foreach (array("lib/dojo/dojo.js",
|
2014-01-28 11:32:19 +00:00
|
|
|
"lib/dojo/tt-rss-layer.js",
|
2020-01-23 10:14:47 +00:00
|
|
|
"js/common.js",
|
|
|
|
"js/utility.js",
|
2014-01-28 11:32:19 +00:00
|
|
|
"errors.php?mode=js") as $jsfile) {
|
|
|
|
|
|
|
|
echo javascript_tag($jsfile);
|
|
|
|
|
|
|
|
} ?>
|
|
|
|
|
2020-11-30 12:53:32 +00:00
|
|
|
<?php if (theme_exists(LOCAL_OVERRIDE_STYLESHEET)) {
|
|
|
|
echo stylesheet_tag(get_theme_path(LOCAL_OVERRIDE_STYLESHEET));
|
|
|
|
} ?>
|
|
|
|
|
2020-01-23 10:14:47 +00:00
|
|
|
<style type="text/css">
|
|
|
|
@media (prefers-color-scheme: dark) {
|
|
|
|
body {
|
|
|
|
background : #303030;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
body.css_loading * {
|
|
|
|
display : none;
|
|
|
|
}
|
|
|
|
</style>
|
|
|
|
|
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
|
|
|
|
2020-01-23 10:14:47 +00:00
|
|
|
<body class="flat ttrss_utility ttrss_login css_loading">
|
2012-09-10 16:15:45 +00:00
|
|
|
|
|
|
|
<script type="text/javascript">
|
2020-01-25 14:00:51 +00:00
|
|
|
const UtilityApp = {
|
|
|
|
previousLogin: "",
|
|
|
|
init: function() { /* invoked by UtilityJS */
|
|
|
|
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();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
},
|
|
|
|
fetchProfiles: function() {
|
|
|
|
const login = dijit.byId("login").attr('value');
|
|
|
|
|
|
|
|
if (login && login != this.previousLogin) {
|
|
|
|
this.previousLogin = login;
|
|
|
|
|
|
|
|
xhrJson("public.php", {op: "getprofiles", login: login},
|
|
|
|
(reply) => {
|
|
|
|
const profile = dijit.byId('profile');
|
|
|
|
|
|
|
|
profile.removeOption(profile.getOptions());
|
|
|
|
|
2021-02-18 19:23:06 +00:00
|
|
|
reply.forEach((p) => {
|
2020-01-25 14:00:51 +00:00
|
|
|
profile
|
|
|
|
.attr("disabled", false)
|
|
|
|
.addOption(p);
|
|
|
|
});
|
|
|
|
});
|
|
|
|
}
|
|
|
|
},
|
|
|
|
gotoRegForm: function() {
|
|
|
|
window.location.href = "register.php";
|
|
|
|
return false;
|
|
|
|
},
|
|
|
|
bwLimitChange: function(elem) {
|
|
|
|
Cookie.set("ttrss_bwlimit", elem.checked,
|
|
|
|
<?php print SESSION_COOKIE_LIFETIME ?>);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
|
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
|
|
|
|
2021-02-14 06:15:51 +00:00
|
|
|
<h1><?= "Authentication" ?></h1>
|
2019-02-19 16:46:09 +00:00
|
|
|
<div class="content">
|
2021-02-14 06:15:51 +00:00
|
|
|
<form action="public.php?return=<?= $return ?>"
|
2019-02-19 12:14:42 +00:00
|
|
|
dojoType="dijit.form.Form" method="POST">
|
2007-08-20 05:10:03 +00:00
|
|
|
|
2021-02-16 11:23:00 +00:00
|
|
|
<?= \Controls\hidden_tag("op", "login"); ?>
|
2007-11-21 17:43:55 +00:00
|
|
|
|
2021-02-05 21:12:15 +00:00
|
|
|
<?php if (!empty($_SESSION["login_error_msg"])) { ?>
|
2021-02-14 06:15:51 +00:00
|
|
|
<?= format_error($_SESSION["login_error_msg"]) ?>
|
2019-02-19 12:14:42 +00:00
|
|
|
<?php $_SESSION["login_error_msg"] = ""; ?>
|
|
|
|
<?php } ?>
|
2007-03-01 09:43:54 +00:00
|
|
|
|
2019-02-19 12:14:42 +00:00
|
|
|
<fieldset>
|
2021-02-14 06:15:51 +00:00
|
|
|
<label><?= __("Login:") ?></label>
|
2019-02-19 12:14:42 +00:00
|
|
|
<input name="login" id="login" dojoType="dijit.form.TextBox" type="text"
|
2020-01-25 14:00:51 +00:00
|
|
|
onchange="UtilityApp.fetchProfiles()"
|
|
|
|
onfocus="UtilityApp.fetchProfiles()"
|
|
|
|
onblur="UtilityApp.fetchProfiles()"
|
2021-02-14 06:15:51 +00:00
|
|
|
required="1" value="<?= $_SESSION["fake_login"] ?? "" ?>" />
|
2019-02-19 12:14:42 +00:00
|
|
|
</fieldset>
|
|
|
|
|
|
|
|
<fieldset>
|
2021-02-14 06:15:51 +00:00
|
|
|
<label><?= __("Password:") ?></label>
|
2019-02-19 12:14:42 +00:00
|
|
|
|
|
|
|
<input type="password" name="password" required="1"
|
|
|
|
dojoType="dijit.form.TextBox"
|
|
|
|
class="input input-text"
|
2020-01-25 14:00:51 +00:00
|
|
|
onchange="UtilityApp.fetchProfiles()"
|
|
|
|
onfocus="UtilityApp.fetchProfiles()"
|
|
|
|
onblur="UtilityApp.fetchProfiles()"
|
2021-02-14 06:15:51 +00:00
|
|
|
value="<?= $_SESSION["fake_password"] ?? "" ?>"/>
|
2019-02-19 12:14:42 +00:00
|
|
|
</fieldset>
|
2020-09-17 16:02:27 +00:00
|
|
|
<?php if (strpos(PLUGINS, "auth_internal") !== false) { ?>
|
2019-11-13 08:52:25 +00:00
|
|
|
<fieldset class="align-right">
|
2021-02-14 06:15:51 +00:00
|
|
|
<a href="public.php?op=forgotpass"><?= __("I forgot my password") ?></a>
|
2019-11-13 08:52:25 +00:00
|
|
|
</fieldset>
|
|
|
|
<?php } ?>
|
2012-09-10 16:15:45 +00:00
|
|
|
|
2019-02-19 12:14:42 +00:00
|
|
|
<fieldset>
|
2021-02-14 06:15:51 +00:00
|
|
|
<label><?= __("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'>
|
2021-02-14 06:15:51 +00:00
|
|
|
<option><?= __("Default profile") ?></option>
|
2019-02-19 12:14:42 +00:00
|
|
|
</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
|
|
|
|
2021-02-16 12:05:32 +00:00
|
|
|
<label id="bw_limit_label">
|
2021-02-16 13:59:21 +00:00
|
|
|
<?= \Controls\checkbox_tag("bw_limit", false, "",
|
|
|
|
["onchange" => 'UtilityApp.bwLimitChange(this)'], 'bw_limit') ?>
|
2021-02-14 06:15:51 +00:00
|
|
|
<?= __("Use less traffic") ?></label>
|
2019-02-19 12:14:42 +00:00
|
|
|
</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">
|
2021-02-14 06:15:51 +00:00
|
|
|
<?= __("Does not display images in articles, reduces automatic refreshes."); ?>
|
2019-02-19 12:14:42 +00:00
|
|
|
</div>
|
2010-01-13 15:31:51 +00:00
|
|
|
|
2020-09-18 12:48:22 +00:00
|
|
|
<fieldset class="narrow">
|
|
|
|
<label> </label>
|
|
|
|
|
2021-02-16 12:05:32 +00:00
|
|
|
<label id="safe_mode_label">
|
|
|
|
<?= \Controls\checkbox_tag("safe_mode") ?>
|
|
|
|
<?= __("Safe mode") ?>
|
|
|
|
</label>
|
2020-09-18 12:48:22 +00:00
|
|
|
</fieldset>
|
|
|
|
|
2021-02-11 18:19:57 +00:00
|
|
|
<div dojoType="dijit.Tooltip" connectId="safe_mode_label" position="below" style="display:none">
|
2021-02-14 06:15:51 +00:00
|
|
|
<?= __("Uses default theme and prevents all plugins from loading."); ?>
|
2021-02-11 18:19:57 +00:00
|
|
|
</div>
|
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>
|
2021-02-16 12:05:32 +00:00
|
|
|
<?= \Controls\checkbox_tag("remember_me") ?>
|
2021-02-14 06:15:51 +00:00
|
|
|
<?= __("Remember me") ?>
|
2019-02-19 12:14:42 +00:00
|
|
|
</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>
|
2021-02-16 12:05:32 +00:00
|
|
|
<?= \Controls\submit_tag(__('Log in')) ?>
|
2019-02-19 12:14:42 +00:00
|
|
|
</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>
|
2021-02-14 06:15:51 +00:00
|
|
|
© 2005–<?= date('Y') ?> <a href="https://fakecake.org/">Andrew Dolgov</a>
|
2019-02-19 11:27:53 +00:00
|
|
|
</div>
|
|
|
|
|
|
|
|
</div>
|
2007-03-01 09:43:54 +00:00
|
|
|
|
2019-02-19 11:27:53 +00:00
|
|
|
</body>
|
|
|
|
</html>
|