Sha256: 06b34c3fb99ef7ad73d3a7dfc88ab1e1316cb05360503ada8da9958d72023eb3
Contents?: true
Size: 839 Bytes
Versions: 1
Compression:
Stored size: 839 Bytes
Contents
<% @page_title = 'Password Reset' %> <div class="login-form"> <h1>Password Reset</h1> <%= form_for @user, :url => password_reset_path(:id => @user.perishable_token), :html => {:class => 'password-reset-form'} do |f| %> <%= tb_form_errors(@user) %> <% if params[:return_to] %> <%= hidden_field_tag :return_to, params[:return_to] %> <% end %> <div class="form-row"> <%= f.label :password %> <%= f.password_field :password, :placeholder => 'password', :autofocus => 'autofocus' %> </div> <div class="form-row"> <%= f.label :password_confirmation, 'Confirm password' %> <%= f.password_field :password_confirmation, 'placeholder' => 'confirm password' %> </div> <div class="form-row form-row-actions"> <%= f.submit "Reset Password", :class => 'btn btn-primary' %> </div> <% end %> </div>
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
tb_core-1.2.8 | app/views/password_resets/show.html.erb |