70af57c6e1
All the template are now compiled at compile-time with the `ructe` crate. I preferred to use it instead of askama because it allows more complex Rust expressions, where askama only supports a small subset of expressions and doesn't allow them everywhere (for instance, `{{ macro!() | filter }}` would result in a parsing error). The diff is quite huge, but there is normally no changes in functionality. Fixes #161 and unblocks #110 and #273
19 lines
638 B
HTML
19 lines
638 B
HTML
@use template_utils::*;
|
|
@use templates::base;
|
|
@use validator::ValidationErrors;
|
|
@use routes::session::LoginForm;
|
|
|
|
@(ctx: BaseContext, message: Option<String>, form: &LoginForm, errors: ValidationErrors)
|
|
|
|
@:base(ctx, "Login", {}, {}, {
|
|
<h1>@i18n!(ctx.1, "Login")</h1>
|
|
@if let Some(message) = message {
|
|
<p>@message</p>
|
|
}
|
|
<form method="post">
|
|
@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")" />
|
|
</form>
|
|
})
|