mirror of
https://git.tt-rss.org/git/tt-rss.git
synced 2025-12-13 20:45:55 +00:00
login form: add workarounds for chrome password manager
This commit is contained in:
@@ -38,40 +38,50 @@
|
|||||||
<body class="flat ttrss_utility ttrss_login css_loading">
|
<body class="flat ttrss_utility ttrss_login css_loading">
|
||||||
|
|
||||||
<script type="text/javascript">
|
<script type="text/javascript">
|
||||||
require(['dojo/parser', "dojo/ready", 'dijit/form/Button','dijit/form/CheckBox', 'dijit/form/Form',
|
const UtilityApp = {
|
||||||
'dijit/form/Select','dijit/form/TextBox','dijit/form/ValidationTextBox'],function(parser, ready){
|
previousLogin: "",
|
||||||
ready(function() {
|
init: function() { /* invoked by UtilityJS */
|
||||||
parser.parse();
|
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("bw_limit").attr("checked", Cookie.get("ttrss_bwlimit") == 'true');
|
||||||
dijit.byId("login").focus();
|
dijit.byId("login").focus();
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
},
|
||||||
|
fetchProfiles: function() {
|
||||||
|
const login = dijit.byId("login").attr('value');
|
||||||
|
|
||||||
function fetchProfiles() {
|
if (login && login != this.previousLogin) {
|
||||||
xhrJson("public.php", { op: "getprofiles", login: dijit.byId("login").attr('value') },
|
this.previousLogin = login;
|
||||||
(reply) => {
|
|
||||||
const profile = dijit.byId('profile');
|
|
||||||
|
|
||||||
profile.removeOption(profile.getOptions());
|
xhrJson("public.php", {op: "getprofiles", login: login},
|
||||||
|
(reply) => {
|
||||||
|
const profile = dijit.byId('profile');
|
||||||
|
|
||||||
reply.each((p) => {
|
profile.removeOption(profile.getOptions());
|
||||||
profile
|
|
||||||
.attr("disabled", false)
|
reply.each((p) => {
|
||||||
.addOption(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 SESSION_COOKIE_LIFETIME ?>);
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
function gotoRegForm() {
|
|
||||||
window.location.href = "register.php";
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
|
|
||||||
function bwLimitChange(elem) {
|
|
||||||
Cookie.set("ttrss_bwlimit", elem.checked,
|
|
||||||
<?php print SESSION_COOKIE_LIFETIME ?>);
|
|
||||||
}
|
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<?php $return = urlencode(make_self_url()) ?>
|
<?php $return = urlencode(make_self_url()) ?>
|
||||||
@@ -93,7 +103,9 @@ function bwLimitChange(elem) {
|
|||||||
<fieldset>
|
<fieldset>
|
||||||
<label><?php echo __("Login:") ?></label>
|
<label><?php echo __("Login:") ?></label>
|
||||||
<input name="login" id="login" dojoType="dijit.form.TextBox" type="text"
|
<input name="login" id="login" dojoType="dijit.form.TextBox" type="text"
|
||||||
onchange="fetchProfiles()" onfocus="fetchProfiles()" onblur="fetchProfiles()"
|
onchange="UtilityApp.fetchProfiles()"
|
||||||
|
onfocus="UtilityApp.fetchProfiles()"
|
||||||
|
onblur="UtilityApp.fetchProfiles()"
|
||||||
required="1" value="<?php echo $_SESSION["fake_login"] ?>" />
|
required="1" value="<?php echo $_SESSION["fake_login"] ?>" />
|
||||||
</fieldset>
|
</fieldset>
|
||||||
|
|
||||||
@@ -103,6 +115,9 @@ function bwLimitChange(elem) {
|
|||||||
<input type="password" name="password" required="1"
|
<input type="password" name="password" required="1"
|
||||||
dojoType="dijit.form.TextBox"
|
dojoType="dijit.form.TextBox"
|
||||||
class="input input-text"
|
class="input input-text"
|
||||||
|
onchange="UtilityApp.fetchProfiles()"
|
||||||
|
onfocus="UtilityApp.fetchProfiles()"
|
||||||
|
onblur="UtilityApp.fetchProfiles()"
|
||||||
value="<?php echo $_SESSION["fake_password"] ?>"/>
|
value="<?php echo $_SESSION["fake_password"] ?>"/>
|
||||||
</fieldset>
|
</fieldset>
|
||||||
<?php if (strpos(PLUGINS, "auth_internal") !== FALSE) { ?>
|
<?php if (strpos(PLUGINS, "auth_internal") !== FALSE) { ?>
|
||||||
@@ -123,7 +138,7 @@ function bwLimitChange(elem) {
|
|||||||
<label> </label>
|
<label> </label>
|
||||||
|
|
||||||
<label id="bw_limit_label"><input dojoType="dijit.form.CheckBox" name="bw_limit" id="bw_limit"
|
<label id="bw_limit_label"><input dojoType="dijit.form.CheckBox" name="bw_limit" id="bw_limit"
|
||||||
type="checkbox" onchange="bwLimitChange(this)">
|
type="checkbox" onchange="UtilityApp.bwLimitChange(this)">
|
||||||
<?php echo __("Use less traffic") ?></label>
|
<?php echo __("Use less traffic") ?></label>
|
||||||
</fieldset>
|
</fieldset>
|
||||||
|
|
||||||
@@ -151,7 +166,7 @@ function bwLimitChange(elem) {
|
|||||||
<button dojoType="dijit.form.Button" type="submit" class="alt-primary"><?php echo __('Log in') ?></button>
|
<button dojoType="dijit.form.Button" type="submit" class="alt-primary"><?php echo __('Log in') ?></button>
|
||||||
|
|
||||||
<?php if (defined('ENABLE_REGISTRATION') && ENABLE_REGISTRATION) { ?>
|
<?php if (defined('ENABLE_REGISTRATION') && ENABLE_REGISTRATION) { ?>
|
||||||
<button onclick="return gotoRegForm()" dojoType="dijit.form.Button">
|
<button onclick="return UtilityApp.gotoRegForm()" dojoType="dijit.form.Button">
|
||||||
<?php echo __("Create new account") ?></button>
|
<?php echo __("Create new account") ?></button>
|
||||||
<?php } ?>
|
<?php } ?>
|
||||||
</fieldset>
|
</fieldset>
|
||||||
|
|||||||
@@ -21,6 +21,9 @@ Event.observe(window, "load", function() {
|
|||||||
|
|
||||||
link.onload = function() {
|
link.onload = function() {
|
||||||
document.querySelector("body").removeClassName("css_loading");
|
document.querySelector("body").removeClassName("css_loading");
|
||||||
|
|
||||||
|
if (typeof UtilityApp != "undefined")
|
||||||
|
UtilityApp.init();
|
||||||
};
|
};
|
||||||
|
|
||||||
try {
|
try {
|
||||||
|
|||||||
Reference in New Issue
Block a user