skill-assessment-app/app/views/admin/auth/reset_request.html.erb

16 lines
335 B
Plaintext
Raw Permalink Normal View History

2016-08-24 15:02:32 -05:00
<%
content_for :main_class, "intro_tpl"
2016-11-22 16:59:54 -06:00
content_for :title, "Skills Assessment Admin"
2016-08-24 15:02:32 -05:00
%>
<h1>Password Reset</h1>
<%= form_for :auth, url: admin_send_reset_path do |form| %>
<div class="form-group">
<%= form.label :email %>
<%= form.email_field :email %>
</div>
<%= submit_tag "Request Password Reset" %>
<% end %>