Plume/templates/session/password_reset_request_expired.rs.html

10 lines
297 B
HTML
Raw Normal View History

2020-01-21 06:02:03 +00:00
@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>
2019-10-17 07:12:24 +00:00
<p>@i18n!(ctx.1, "Please start the process again by clicking <a href=\"/password-reset\">here</a>.")</p>
})