diff --git a/templates/users/new.rs.html b/templates/users/new.rs.html index 5e4f18b..89b3655 100644 --- a/templates/users/new.rs.html +++ b/templates/users/new.rs.html @@ -6,7 +6,7 @@ @(ctx: BaseContext, enabled: bool, form: &NewUserForm, errors: ValidationErrors) -@:base(ctx, "Edit your account", {}, {}, { +@:base(ctx, "Create your account", {}, {}, { @if enabled {

@i18n!(ctx.1, "Create an account")

@@ -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\"") - +
} else { -

@i18n!(ctx.1, "Sorry, but registrations are closed on this instance. Try to find another one")

+

@i18n!(ctx.1, "Apologies, but registrations are closed on this particular instance. You can, however, find a different one.")

} })