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-08-27 14:50:24 +00:00
|
|
|
@(Input::new("email_or_name", i18n!(ctx.1, "Username, or email"))
|
|
|
|
.default(&form.email_or_name)
|
|
|
|
.error(&errors)
|
|
|
|
.set_prop("minlenght", 1)
|
|
|
|
.html(ctx.1))
|
|
|
|
@(Input::new("password", i18n!(ctx.1, "Password"))
|
|
|
|
.default(&form.password)
|
|
|
|
.error(&errors)
|
|
|
|
.set_prop("minlenght", 8)
|
|
|
|
.input_type("password")
|
|
|
|
.html(ctx.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
|
|
|
})
|