mirror of
https://git.joinplu.me/Plume/Plume.git
synced 2025-02-08 11:12:22 +00:00
10 lines
298 B
HTML
10 lines
298 B
HTML
|
@use template_utils::*;
|
||
|
@use templates::base;
|
||
|
|
||
|
@(ctx: BaseContext)
|
||
|
|
||
|
@:base(ctx, i18n!(ctx.1, "Password reset"), {}, {}, {
|
||
|
<h1>@i18n!(ctx.1, "This token has expired")</h1>
|
||
|
<p>@i18n!(ctx.1, "Please start the process again by clicking") <a href="/password-reset">@i18n!(ctx.1, "here")</a>.</p>
|
||
|
})
|