Works on template
Use uri! to generate links instead of hardcoded urls Fix #110 Fix invalid links needing to be POST forms Translate login message for boost and like directly from template Put js for search in its own file
This commit is contained in:
@@ -2,6 +2,7 @@
|
||||
@use templates::base;
|
||||
@use validator::ValidationErrors;
|
||||
@use routes::session::LoginForm;
|
||||
@use routes::*;
|
||||
|
||||
@(ctx: BaseContext, message: Option<String>, form: &LoginForm, errors: ValidationErrors)
|
||||
|
||||
@@ -10,7 +11,7 @@
|
||||
@if let Some(message) = message {
|
||||
<p>@message</p>
|
||||
}
|
||||
<form method="post">
|
||||
<form method="post" action="@uri!(session::create)">
|
||||
@input!(ctx.1, email_or_name (text), "Username or email", form, errors.clone(), "minlenght=\"1\"")
|
||||
@input!(ctx.1, password (password), "Password", form, errors, "minlenght=\"1\"")
|
||||
<input type="submit" value="@i18n!(ctx.1, "Login")" />
|
||||
|
||||
Reference in New Issue
Block a user