fix password field

Signed-off-by: Vladimir Mandic <mandic00@live.com>
This commit is contained in:
Vladimir Mandic
2025-11-11 17:14:08 -05:00
parent 233abb8856
commit f383a2babc
3 changed files with 6 additions and 5 deletions
+4 -3
View File
@@ -1,12 +1,12 @@
# Change Log for SD.Next
## Update for 2025-11-10
## Update for 2025-11-11
### Highlights for 2025-11-10
### Highlights for 2025-11-11
TBD
### Details for 2025-11-10
### Details for 2025-11-11
- **Features**
- **kanvas**: new module for native canvas-based image manipulation
@@ -37,6 +37,7 @@ TBD
- detailer: fail on unsupported models instead of corrputing results
- ui: fix collapsible panels
- control: safe load non-sparse controlnet
- auth: fix password being shown in clear text during login
## Update for 2025-11-06
+1 -1
View File
@@ -16,7 +16,7 @@ const loginHTML = `
<label for="username" style="margin-top: 0.5em">Username</label>
<input type="text" id="loginUsername" name="username" style="width: 92%; padding: 0.5em; margin-top: 0.5em; border-radius: 4px;">
<label for="password" style="margin-top: 0.5em">Password</label>
<input type="text" id="loginPassword" name="password" style="width: 92%; padding: 0.5em; margin-top: 0.5em; border-radius: 4px;">
<input type="password" id="loginPassword" name="password" style="width: 92%; padding: 0.5em; margin-top: 0.5em; border-radius: 4px;">
<div id="loginStatus" style="margin-top: 0.5em"></div>
<button type="submit" style="width: 100%; padding: 0.5em; margin-top: 0.5em; background: #366; color: #ddd; border: none; border-radius: 4px; filter: drop-shadow(2px 4px 6px black);">Login</button>
</div>