feat(html): login auto complete field

This commit is contained in:
qwqVictor 2023-08-29 23:05:55 +08:00
parent 4fb090c1f8
commit 9b29e30162

View File

@ -64,8 +64,8 @@
<form class="form-signin"
onsubmit="connect(this.elements['inputUser'].value, this.elements['inputPassword'].value, event);">
<img class="logo" src="./logo.svg">
<input type="text" id="inputUser" class="form-control" placeholder="用户名">
<input type="password" id="inputPassword" class="form-control" placeholder="密码">
<input type="text" id="inputUser" autocomplete="username" class="form-control" placeholder="用户名">
<input type="password" id="inputPassword" autocomplete="current-password" class="form-control" placeholder="密码">
<button class="btn btn-lg btn-primary btn-block" type="submit"
style="background-color: #34A6FF; border-color: #34A6FF">连接</button>
<p></p>