Welcome to mirror list, hosted at ThFree Co, Russian Federation.

new.html.haml « passwords « devise « views « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: c4672a5b25ea9d910f80edffd19284af6ca53ee1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
.login-box
  .login-body
    = form_for(resource, as: resource_name, url: password_path(resource_name), html: { method: :post, class: 'gl-show-field-errors' }) do |f|
      .devise-errors
        = render "devise/shared/error_messages", resource: resource
      .form-group
        = f.label :email
        = f.email_field :email, class: "form-control gl-form-input", required: true, value: params[:user_email], autofocus: true, title: 'Please provide a valid email address.'
      .clearfix
        = f.submit "Reset password", class: "gl-button btn-confirm btn"

.clearfix.prepend-top-20
  = render 'devise/shared/sign_in_link'