Make MQTT input a password field

This commit is contained in:
Ingo Theiss 2022-08-08 07:15:49 +02:00 committed by Thomas Basler
parent 26268479fb
commit 8b89acd039

View File

@ -74,7 +74,7 @@
<div class="row mb-3"> <div class="row mb-3">
<label for="inputPassword" class="col-sm-2 col-form-label">Password:</label> <label for="inputPassword" class="col-sm-2 col-form-label">Password:</label>
<div class="col-sm-10"> <div class="col-sm-10">
<input type="text" class="form-control" id="inputPassword" maxlength="32" <input type="password" class="form-control" id="inputPassword" maxlength="32"
placeholder="Password, leave empty for anonymous connection" placeholder="Password, leave empty for anonymous connection"
v-model="mqttConfigList.mqtt_password" /> v-model="mqttConfigList.mqtt_password" />
</div> </div>
@ -290,4 +290,4 @@ export default defineComponent({
}, },
}, },
}); });
</script> </script>