2018-12-06 17:54:16 +00:00
|
|
|
@use template_utils::*;
|
|
|
|
@use templates::base;
|
|
|
|
@use validator::ValidationErrors;
|
|
|
|
@use routes::session::LoginForm;
|
2018-12-07 11:05:01 +00:00
|
|
|
@use routes::*;
|
2018-12-06 17:54:16 +00:00
|
|
|
|
|
|
|
@(ctx: BaseContext, message: Option<String>, form: &LoginForm, errors: ValidationErrors)
|
|
|
|
|
2019-04-02 13:08:07 +00:00
|
|
|
@:base(ctx, i18n!(ctx.1, "Log in"), {}, {}, {
|
|
|
|
<h1>@i18n!(ctx.1, "Log in")</h1>
|
2018-12-06 17:54:16 +00:00
|
|
|
@if let Some(message) = message {
|
|
|
|
<p>@message</p>
|
|
|
|
}
|
2018-12-07 11:05:01 +00:00
|
|
|
<form method="post" action="@uri!(session::create)">
|
2019-04-02 13:08:07 +00:00
|
|
|
@input!(ctx.1, email_or_name (text), "Username, or email", form, errors.clone(), "minlenght=\"1\"")
|
2018-12-06 17:54:16 +00:00
|
|
|
@input!(ctx.1, password (password), "Password", form, errors, "minlenght=\"1\"")
|
2019-04-02 13:08:07 +00:00
|
|
|
<input type="submit" value="@i18n!(ctx.1, "Log in")" />
|
2018-12-06 17:54:16 +00:00
|
|
|
</form>
|
2019-02-27 12:29:26 +00:00
|
|
|
<a href="@uri!(session::password_reset_request_form)">Forgot your password?</a>
|
2018-12-06 17:54:16 +00:00
|
|
|
})
|