Actualiza y revisa código aplicando cargo clippy

This commit is contained in:
Manuel Cillero 2022-07-20 00:53:00 +02:00
parent e6ea59785e
commit f3d57eb0aa
23 changed files with 45 additions and 53 deletions

View file

@ -51,7 +51,7 @@ fn form_login() -> Form {
Form::new()
.with_id("user-login")
.with_element(
form::Input::textfield()
form_element::Input::textfield()
.with_name("name")
.with_label(l("username").as_str())
.with_help_text(
@ -66,10 +66,10 @@ fn form_login() -> Form {
.with_autofocus(true),
)
.with_element(
form::Input::password()
form_element::Input::password()
.with_name("pass")
.with_label(l("password").as_str())
.with_help_text(l("password_help").as_str()),
)
.with_element(form::Button::submit(l("login").as_str()))
.with_element(form_element::Button::submit(l("login").as_str()))
}