fix(web): hide pwd finally

This commit is contained in:
əlemi 2024-04-22 03:08:32 +02:00
parent 87a5a77e19
commit 9c94caf8b4
Signed by: alemi
GPG key ID: A4895B84D311642C

View file

@ -71,7 +71,7 @@ pub fn LoginBox(
}); });
} > } >
<input class="w-100" type="text" node_ref=username_ref placeholder="username" /> <input class="w-100" type="text" node_ref=username_ref placeholder="username" />
<input class="w-100" type="text" node_ref=password_ref placeholder="password" /> <input class="w-100" type="password" node_ref=password_ref placeholder="password" />
<input class="w-100" type="submit" value="login" /> <input class="w-100" type="submit" value="login" />
</form> </form>
</div> </div>