Rename the password field to be compatible with 1Password

This commit is contained in:
Savanni D'Gerinel 2023-10-25 22:57:36 -04:00
parent 41bbfa14f3
commit 1d7637862a
1 changed files with 1 additions and 1 deletions

View File

@ -25,7 +25,7 @@ pub fn auth(_message: Option<String>) -> build_html::HtmlPage {
Container::new(ContainerType::Div)
.with_attributes([("class", "authentication-form__input")])
.with_html(
Input::new("token", "token")
Input::new("password", "password")
.with_id("for-token-input")
.with_attributes([("size", "50")]),
),