From 1d7637862acd8a9405185ee8141e8e08e0c4d58a Mon Sep 17 00:00:00 2001 From: Savanni D'Gerinel Date: Wed, 25 Oct 2023 22:57:36 -0400 Subject: [PATCH] Rename the password field to be compatible with 1Password --- file-service/src/pages.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/file-service/src/pages.rs b/file-service/src/pages.rs index 65997e3..977f54f 100644 --- a/file-service/src/pages.rs +++ b/file-service/src/pages.rs @@ -25,7 +25,7 @@ pub fn auth(_message: Option) -> 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")]), ),