diff options
Diffstat (limited to 'app/views/registrations/welcome.html.haml')
-rw-r--r-- | app/views/registrations/welcome.html.haml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/views/registrations/welcome.html.haml b/app/views/registrations/welcome.html.haml index bc8d7ed10ef..ef3e0b1b4c0 100644 --- a/app/views/registrations/welcome.html.haml +++ b/app/views/registrations/welcome.html.haml @@ -1,6 +1,6 @@ - content_for(:page_title, _('Welcome to GitLab %{name}!') % { name: current_user.name }) .text-center.mb-3 - = _('In order to tailor your experience with GitLab we<br>would like to know a bit more about you.').html_safe + = html_escape(_('In order to tailor your experience with GitLab we%{br_tag}would like to know a bit more about you.')) % { br_tag: '<br/>'.html_safe } .signup-box.p-3.mb-2 .signup-body = form_for(current_user, url: users_sign_up_update_registration_path, html: { class: 'new_new_user gl-show-field-errors', 'aria-live' => 'assertive' }) do |f| |