Sha256: a1c82a232d71423b27596c83b0433d6bae474a2fe22a67dded1e0888bb066caf

Contents?: true

Size: 1.01 KB

Versions: 6

Compression:

Stored size: 1.01 KB

Contents

<div class="modal fade" id="modal-forget-password">
  <div class="modal-dialog">
    <div class="modal-content">
      <div class="modal-header">
        <button type="button" class="close" data-dismiss="modal">×</button>
        <h3><%%= t(:forgot_password, :default => "Forgot password") %></h3>
      </div>
      <div class="modal-body">
        <%%= form_for('<%= model %>', :as => '<%= model %>', :url => password_path('<%= model %>'), :html => { :method => :post, :class => "form-horizontal" }) do |f| %>
          <div class="form-group">
            <%%= f.label :email, t(:email, :default => "Email"), :class => "control-label" %>
            <div>
              <%%= f.email_field :email %>
            </div>
          </div>
          <div class="form-group">
            <div>
              <%%= f.submit t(:send_me_reset_password_instructions, :default => "Send me reset password instructions"), :class => 'btn btn-default' %>
            </div>
          </div>
        <%% end %>
      </div>
    </div>
  </div>
</div>

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
beautiful_scaffold-1.0.2 lib/generators/templates/app/views/partials/_forget_password.html.erb
beautiful_scaffold-1.0.1 lib/generators/templates/app/views/partials/_forget_password.html.erb
beautiful_scaffold-1.0.0.pre lib/generators/templates/app/views/partials/_forget_password.html.erb
beautiful_scaffold-0.3.6 lib/generators/templates/app/views/partials/_forget_password.html.erb
beautiful_scaffold-0.3.5 lib/generators/templates/app/views/partials/_forget_password.html.erb
beautiful_scaffold-0.3.4 lib/generators/templates/app/views/partials/_forget_password.html.erb