09-09-2025 08:48 PM
Just wondering if there is an option to show password when logging-in to Meraki splash page just like the same way with Google Gmail were there is a tick box option to show the password, So that before a user logs in able to assure the password they key in is correct.
Solved! Go to Solution.
09-10-2025 03:39 AM
Some thing like this.
<!DOCTYPE html>
<html>
<head>
<title>Password Toggle Example</title>
<style>
body {
font-family: Arial, sans-serif;
margin: 50px;
}
.container {
max-width: 300px;
margin: auto;
}
.toggle-button {
margin-top: 10px;
padding: 5px 10px;
cursor: pointer;
}
</style>
</head>
<body>
<div class="container">
<label for="myInput">Password:</label>
<input type="password" id="myInput" value="FakePSW">
<button class="toggle-button" onclick="togglePassword()">Show Password</button>
</div>
<script>
function togglePassword() {
var x = document.getElementById("myInput");
var btn = document.querySelector(".toggle-button");
if (x.type === "password") {
x.type = "text";
btn.textContent = "Hide Password";
} else {
x.type = "password";
btn.textContent = "Show Password";
}
}
</script>
</body>
</html>
09-10-2025 02:47 AM
If you're hosting your own homepage or using Meraki's custom homepage feature, you can try adding a simple checkbox and JavaScript to toggle password visibility.
09-10-2025 03:39 AM
Some thing like this.
<!DOCTYPE html>
<html>
<head>
<title>Password Toggle Example</title>
<style>
body {
font-family: Arial, sans-serif;
margin: 50px;
}
.container {
max-width: 300px;
margin: auto;
}
.toggle-button {
margin-top: 10px;
padding: 5px 10px;
cursor: pointer;
}
</style>
</head>
<body>
<div class="container">
<label for="myInput">Password:</label>
<input type="password" id="myInput" value="FakePSW">
<button class="toggle-button" onclick="togglePassword()">Show Password</button>
</div>
<script>
function togglePassword() {
var x = document.getElementById("myInput");
var btn = document.querySelector(".toggle-button");
if (x.type === "password") {
x.type = "text";
btn.textContent = "Hide Password";
} else {
x.type = "password";
btn.textContent = "Show Password";
}
}
</script>
</body>
</html>
09-10-2025 01:16 PM
I wish I could give this answer extra kudos.
09-10-2025 01:25 PM
I gave an extra kudo on your behalf, @Philip D'Ath! (I don't have double-kudo power like the All-Stars though :-))
Discover and save your favorite ideas. Come back to expert answers, step-by-step guides, recent topics, and more.
New here? Get started with these tips. How to use Community New member guide