style(login): make login button take full width as open id login

This commit is contained in:
Herculino Trotta
2025-08-07 12:02:41 -03:00
parent a544dc4943
commit 31cf62e277

View File

@@ -45,7 +45,7 @@ class LoginForm(AuthenticationForm):
self.helper.layout = Layout( self.helper.layout = Layout(
"username", "username",
"password", "password",
Submit("Submit", "Login"), Submit("Submit", "Login", css_class="btn btn-primary w-100"),
) )