debian-mirror-gitlab/app/views/devise/shared/_signup_box.html.haml

35 lines
1.9 KiB
Text
Raw Normal View History

2017-08-17 22:00:37 +05:30
#register-pane.tab-pane.login-box{ role: 'tabpanel' }
2015-04-26 12:48:37 +05:30
.login-body
2017-08-17 22:00:37 +05:30
= form_for(resource, as: "new_#{resource_name}", url: registration_path(resource_name), html: { class: "new_new_user gl-show-field-errors", "aria-live" => "assertive" }) do |f|
2015-04-26 12:48:37 +05:30
.devise-errors
= devise_error_messages!
2017-08-17 22:00:37 +05:30
.form-group
= f.label :name, 'Full name'
2016-11-03 12:29:30 +05:30
= f.text_field :name, class: "form-control top", required: true, title: "This field is required."
2017-08-17 22:00:37 +05:30
.username.form-group
2016-11-03 12:29:30 +05:30
= f.label :username
2017-09-10 17:25:29 +05:30
= f.text_field :username, class: "form-control middle", pattern: Gitlab::PathRegex::NAMESPACE_FORMAT_REGEX_JS, required: true, title: 'Please create a username with only alphanumeric characters.'
2016-11-03 12:29:30 +05:30
%p.validation-error.hide Username is already taken.
%p.validation-success.hide Username is available.
%p.validation-pending.hide Checking username availability...
2017-08-17 22:00:37 +05:30
.form-group
2016-11-03 12:29:30 +05:30
= f.label :email
= f.email_field :email, class: "form-control middle", required: true, title: "Please provide a valid email address."
2017-08-17 22:00:37 +05:30
.form-group
= f.label :email_confirmation
= f.email_field :email_confirmation, class: "form-control middle", required: true, title: "Please retype the email address."
2015-04-26 12:48:37 +05:30
.form-group.append-bottom-20#password-strength
2016-11-03 12:29:30 +05:30
= f.label :password
= f.password_field :password, class: "form-control bottom", required: true, pattern: ".{#{@minimum_password_length},}", title: "Minimum length is #{@minimum_password_length} characters."
%p.gl-field-hint Minimum length is #{@minimum_password_length} characters
%div
2017-08-17 22:00:37 +05:30
- if Gitlab::Recaptcha.enabled?
= recaptcha_tags
2017-09-10 17:25:29 +05:30
.submit-container
2016-11-03 12:29:30 +05:30
= f.submit "Register", class: "btn-register btn"
.clearfix.submit-container
2015-04-26 12:48:37 +05:30
%p
%span.light Didn't receive a confirmation email?
= succeed '.' do
2018-03-17 18:26:18 +05:30
= link_to "Request a new one", new_confirmation_path(:user)