Fix registration fails silently when there are errors (#1455)

* Fix registration fails silently with long passwords

* Add maxlength
This commit is contained in:
Tony Vincent
2024-11-11 15:41:17 +01:00
committed by GitHub
parent 31ecd3ccd4
commit 278d04a73a
3 changed files with 10 additions and 2 deletions

View File

@@ -28,7 +28,7 @@ class RegistrationsController < ApplicationController
@session = create_session_for(@user)
redirect_to root_path, notice: t(".success")
else
render :new, status: :unprocessable_entity
render :new, status: :unprocessable_entity, alert: t(".failure")
end
end