Sha256: 2d4c53549579c1f5e975829e44385ae85430eebfa95b04eeb25169655ec115a7
Contents?: true
Size: 1.86 KB
Versions: 23
Compression:
Stored size: 1.86 KB
Contents
<!-- PHCTitleSEO Title Variables --> <% phc_title "Send Password Reset Link" %> <% phc_title_tagline "Password Reset Form" %> <% phc_breadcrumb_one link_to "Home", main_app.root_path %> <% phc_breadcrumb_two yield(:phc_title_tagline) %> <!-- PHCTitleSEO Title Variables --> <!-- Page Bradcrumbs --> <ol class="breadcrumb pull-right"> <li class="breadcrumb-item"><%= yield(:phc_breadcrumb_one) %></li> <li class="breadcrumb-item active"><%= yield(:phc_breadcrumb_two) %></li> </ol> <!-- Page Bradcrumbs --> <!-- Page Header --> <h2 class="page-header"><%= yield(:phc_title) %></h2> <!-- Page Header --> <!-- Page Content --> <div class="row"> <div class="col-lg-12"> <!-- Panel --> <div class="panel panel-inverse"> <!-- Panel - Heading --> <div class="panel-heading"> <h4 class="panel-title"><%= yield(:phc_title) %></h4> </div> <!-- Panel - Heading --> <!-- Panel - Body --> <div class="panel-body"> <!-- New Form --> <%= form_for(resource, as: resource_name, url: password_path(resource_name), html: { method: :post }) do |form| %> <!-- Devise Error Message --> <%= devise_error_messages! %> <!-- Devise Error Message --> <div class="form-group"> <%= form.label :email %> <%= form.email_field :email, autofocus: true, autocomplete: "email", class: "form-control form-control-lg" %> </div> <div class="actions"> <%= form.button class: "btn btn-success" do %> <i class="far fa-paper-plane"></i> Send Password Reset Instructions <% end %> </div> <% end %> <!-- New Form --> </div> <!-- Panel - Body --> </div> <!-- Panel --> </div> </div> <!-- Page Content -->
Version data entries
23 entries across 23 versions & 1 rubygems