forked from saurabh/orbit4-5
30 lines
1.1 KiB
Plaintext
30 lines
1.1 KiB
Plaintext
|
<section id="main-wrap">
|
||
|
<div class="sign-in have-other-sign-in">
|
||
|
|
||
|
<div class="form">
|
||
|
<h3 class="login-logo">Reset Your Password</h3>
|
||
|
<div>
|
||
|
<input name="utf8" type="hidden" value="" />
|
||
|
<input name="authenticity_token" type="hidden" value="" />
|
||
|
</div>
|
||
|
|
||
|
<div class="form-block">
|
||
|
<div class="form-list clearfix">
|
||
|
<%= form_tag passwords_path, method: :post, :class => 'user_new form-horizontal content' do %>
|
||
|
<% if flash[:notice] -%>
|
||
|
<%=h flash[:notice] %>
|
||
|
<% end -%>
|
||
|
<div class="control-group clear">
|
||
|
<label for="user_email">
|
||
|
<i class="icons-mail "></i>
|
||
|
</label>
|
||
|
<%= email_field_tag :email, params[:email], :placeholder => t(:email), :id=>"user_email" %>
|
||
|
</div>
|
||
|
<%= content_tag :button, "Reset Password", :type => :submit, :class => 'btn btn-primary' %>
|
||
|
</div>
|
||
|
</div>
|
||
|
<% end %>
|
||
|
|
||
|
</div>
|
||
|
</div>
|
||
|
</section>
|