summaryrefslogtreecommitdiff
path: root/app/views/registrations/welcome.html.haml
blob: 02ab974ecc0a90d69671f4ebd2a1e34bdd0022a5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
- content_for(:page_title, _('Welcome to GitLab<br>%{username}!' % { username: html_escape(current_user.username) }).html_safe)
- max_name_length = 128
.text-center.mb-3
  = _('In order to tailor your experience with GitLab<br>we would like to know a bit more about you.').html_safe
.signup-box.p-3.mb-2
  .signup-body
    = form_for(current_user, url: users_sign_up_update_role_path, html: { class: 'new_new_user gl-show-field-errors', 'aria-live' => 'assertive' }) do |f|
      .devise-errors.mt-0
        = render 'devise/shared/error_messages', resource: current_user
      .name.form-group
        = f.label :name, _('Full name'), class: 'label-bold'
        = f.text_field :name, class: 'form-control top js-block-emoji js-validate-length', :data => { :max_length => max_name_length, :max_length_message => s_('Name is too long (maximum is %{max_length} characters).') % { max_length: max_name_length }, :qa_selector => 'new_user_name_field' }, required: true, title: _('This field is required.')
      .form-group
        = f.label :role, _('Role'), class: 'label-bold'
        = f.select :role, ::User.roles.keys.map { |role| [role.titleize, role] }, {}, class: 'form-control'
      .submit-container.mt-3
        = f.submit _('Get started!'), class: 'btn-register btn btn-block mb-0 p-2'