You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
194 lines
5.4 KiB
PHP
194 lines
5.4 KiB
PHP
<?php startup_gettext(); ?>
|
|
<!DOCTYPE html>
|
|
<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">
|
|
<?php
|
|
foreach (["lib/dojo/dojo.js",
|
|
"lib/dojo/tt-rss-layer.js",
|
|
"js/common.js",
|
|
"js/utility.js"] as $jsfile) {
|
|
|
|
echo javascript_tag($jsfile);
|
|
|
|
} ?>
|
|
|
|
<?php if (theme_exists(Config::get(Config::LOCAL_OVERRIDE_STYLESHEET))) {
|
|
echo stylesheet_tag(get_theme_path(Config::get(Config::LOCAL_OVERRIDE_STYLESHEET)));
|
|
} ?>
|
|
|
|
<style type="text/css">
|
|
@media (prefers-color-scheme: dark) {
|
|
body {
|
|
background : #303030;
|
|
}
|
|
}
|
|
|
|
body.css_loading * {
|
|
display : none;
|
|
}
|
|
</style>
|
|
|
|
<script type="text/javascript">
|
|
require({cache:{}});
|
|
</script>
|
|
</head>
|
|
|
|
<body class="flat ttrss_utility ttrss_login css_loading">
|
|
|
|
<script type="text/javascript">
|
|
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;
|
|
|
|
xhr.json("public.php", {op: "getprofiles", login: login},
|
|
(reply) => {
|
|
const profile = dijit.byId('profile');
|
|
|
|
profile.removeOption(profile.getOptions());
|
|
|
|
reply.forEach((p) => {
|
|
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 Config::get(Config::SESSION_COOKIE_LIFETIME) ?>);
|
|
}
|
|
};
|
|
|
|
|
|
</script>
|
|
|
|
<?php $return = urlencode(make_self_url()) ?>
|
|
|
|
<div class="container">
|
|
|
|
<h1><?= "Authentication" ?></h1>
|
|
<div class="content">
|
|
<form action="public.php?return=<?= $return ?>"
|
|
dojoType="dijit.form.Form" method="POST">
|
|
|
|
<?= \Controls\hidden_tag("op", "login"); ?>
|
|
|
|
<?php if (!empty($_SESSION["login_error_msg"])) { ?>
|
|
<?= format_error($_SESSION["login_error_msg"]) ?>
|
|
<?php $_SESSION["login_error_msg"] = ""; ?>
|
|
<?php } ?>
|
|
|
|
<fieldset>
|
|
<label><?= __("Login:") ?></label>
|
|
<input name="login" id="login" dojoType="dijit.form.TextBox" type="text"
|
|
onchange="UtilityApp.fetchProfiles()"
|
|
onfocus="UtilityApp.fetchProfiles()"
|
|
onblur="UtilityApp.fetchProfiles()"
|
|
required="1" value="<?= $_SESSION["fake_login"] ?? "" ?>" />
|
|
</fieldset>
|
|
|
|
<fieldset>
|
|
<label><?= __("Password:") ?></label>
|
|
|
|
<input type="password" name="password" required="1"
|
|
dojoType="dijit.form.TextBox"
|
|
class="input input-text"
|
|
onchange="UtilityApp.fetchProfiles()"
|
|
onfocus="UtilityApp.fetchProfiles()"
|
|
onblur="UtilityApp.fetchProfiles()"
|
|
value="<?= $_SESSION["fake_password"] ?? "" ?>"/>
|
|
</fieldset>
|
|
<?php if (strpos(Config::get(Config::PLUGINS), "auth_internal") !== false) { ?>
|
|
<fieldset class="align-right">
|
|
<a href="public.php?op=forgotpass"><?= __("I forgot my password") ?></a>
|
|
</fieldset>
|
|
<?php } ?>
|
|
|
|
<fieldset>
|
|
<label><?= __("Profile:") ?></label>
|
|
|
|
<select disabled='disabled' name="profile" id="profile" dojoType='dijit.form.Select'>
|
|
<option><?= __("Default profile") ?></option>
|
|
</select>
|
|
</fieldset>
|
|
|
|
<fieldset class="narrow">
|
|
<label> </label>
|
|
|
|
<label id="bw_limit_label">
|
|
<?= \Controls\checkbox_tag("bw_limit", false, "",
|
|
["onchange" => 'UtilityApp.bwLimitChange(this)'], 'bw_limit') ?>
|
|
<?= __("Use less traffic") ?></label>
|
|
</fieldset>
|
|
|
|
<div dojoType="dijit.Tooltip" connectId="bw_limit_label" position="below" style="display:none">
|
|
<?= __("Does not display images in articles, reduces automatic refreshes."); ?>
|
|
</div>
|
|
|
|
<fieldset class="narrow">
|
|
<label> </label>
|
|
|
|
<label id="safe_mode_label">
|
|
<?= \Controls\checkbox_tag("safe_mode") ?>
|
|
<?= __("Safe mode") ?>
|
|
</label>
|
|
</fieldset>
|
|
|
|
<div dojoType="dijit.Tooltip" connectId="safe_mode_label" position="below" style="display:none">
|
|
<?= __("Uses default theme and prevents all plugins from loading."); ?>
|
|
</div>
|
|
<?php if (Config::get(Config::SESSION_COOKIE_LIFETIME) > 0) { ?>
|
|
|
|
<fieldset class="narrow">
|
|
<label> </label>
|
|
<label>
|
|
<?= \Controls\checkbox_tag("remember_me") ?>
|
|
<?= __("Remember me") ?>
|
|
</label>
|
|
</fieldset>
|
|
|
|
<?php } ?>
|
|
|
|
<hr/>
|
|
|
|
<fieldset class="align-right">
|
|
<label> </label>
|
|
<?= \Controls\submit_tag(__('Log in')) ?>
|
|
</fieldset>
|
|
|
|
</form>
|
|
</div>
|
|
|
|
<div class="footer">
|
|
<a href="https://tt-rss.org/">Tiny Tiny RSS</a>
|
|
© 2005–<?= date('Y') ?> <a href="https://fakecake.org/">Andrew Dolgov</a>
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</body>
|
|
</html>
|