mirror of
https://github.com/mailcow/mailcow-dockerized.git
synced 2026-07-06 13:05:55 +00:00
[Web] add manage identity provider
This commit is contained in:
committed by
DerLinkman
parent
f3ed3060b0
commit
560abc7a94
@@ -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");
|
||||
}
|
||||
});
|
||||
});
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user