fix
This commit is contained in:
@@ -67,6 +67,17 @@
|
||||
else console.log('saved');
|
||||
})
|
||||
</script>
|
||||
@else
|
||||
<script>
|
||||
function changePasswordFieldType(id) {
|
||||
const input = document.getElementById(id);
|
||||
if (input.type === 'password') {
|
||||
input.type = 'text';
|
||||
} else {
|
||||
input.type = 'password';
|
||||
}
|
||||
}
|
||||
</script>
|
||||
@endauth
|
||||
</body>
|
||||
|
||||
|
||||
Reference in New Issue
Block a user