10 lines
276 B
HTML
10 lines
276 B
HTML
|
@use template_utils::*;
|
||
|
@use templates::base;
|
||
|
|
||
|
@(ctx: BaseContext)
|
||
|
|
||
|
@:base(ctx, i18n!(ctx.1, "Password reset"), {}, {}, {
|
||
|
<h1>@i18n!(ctx.1, "Check your inbox!")</h1>
|
||
|
<p>@i18n!(ctx.1, "We sent a mail to the address you gave us, with a link to reset your password.")</p>
|
||
|
})
|