mirror of
https://git.joinplu.me/Plume/Plume.git
synced 2024-11-06 04:09:31 +00:00
9 lines
297 B
HTML
9 lines
297 B
HTML
@use crate::template_utils::*;
|
|
@use crate::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\">here</a>.")</p>
|
|
})
|