Change title from Edit account to Create account (#376)

This commit is contained in:
Marek Ľach 2018-12-24 18:03:54 +00:00 committed by Baptiste Gelez
parent 4ec2480f50
commit aa6c1ffd64
1 changed files with 3 additions and 3 deletions

View File

@ -6,7 +6,7 @@
@(ctx: BaseContext, enabled: bool, form: &NewUserForm, errors: ValidationErrors)
@:base(ctx, "Edit your account", {}, {}, {
@:base(ctx, "Create your account", {}, {}, {
@if enabled {
<h1>@i18n!(ctx.1, "Create an account")</h1>
<form method="post" action="@uri!(user::create)">
@ -15,9 +15,9 @@
@input!(ctx.1, password (password), "Password", form, errors.clone(), "minlenght=\"8\"")
@input!(ctx.1, password_confirmation (password), "Password confirmation", form, errors, "minlenght=\"8\"")
<input type="submit" value="@i18n!(ctx.1, "Create account")" />
<input type="submit" value="@i18n!(ctx.1, "Create your account")" />
</form>
} else {
<p class="center">@i18n!(ctx.1, "Sorry, but registrations are closed on this instance. Try to find another one")</p>
<p class="center">@i18n!(ctx.1, "Apologies, but registrations are closed on this particular instance. You can, however, find a different one.")</p>
}
})