[Web] add manage identity provider

This commit is contained in:
FreddleSpl0it
2023-03-14 14:10:46 +01:00
committed by DerLinkman
parent 67c9c5b8ed
commit 6e9980bf0f
17 changed files with 364 additions and 118 deletions
+11
View File
@@ -352,6 +352,17 @@ $(document).ready(function() {
localStorage.setItem('theme', 'dark');
}
}
// Reveal Password Input
$(".reveal-password-input").on('click', '.toggle-password', function() {
$(this).parent().find('.toggle-password').children().toggleClass("bi-eye bi-eye-slash");
var input = $(this).parent().find('.password-field')
if (input.attr("type") === "password") {
input.attr("type", "text");
} else {
input.attr("type", "password");
}
});
});