diff options
Diffstat (limited to 'app/views/devise/unlocks/new.html.erb')
-rw-r--r-- | app/views/devise/unlocks/new.html.erb | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/app/views/devise/unlocks/new.html.erb b/app/views/devise/unlocks/new.html.erb new file mode 100644 index 00000000000..c6cdcfe51ce --- /dev/null +++ b/app/views/devise/unlocks/new.html.erb @@ -0,0 +1,12 @@ +<h2>Resend unlock instructions</h2> + +<%= form_for(resource, :as => resource_name, :url => unlock_path(resource_name), :html => { :method => :post }) do |f| %> + <%= devise_error_messages! %> + + <div><%= f.label :email %><br /> + <%= f.email_field :email %></div> + + <div><%= f.submit "Resend unlock instructions" %></div> +<% end %> + +<%= render :partial => "devise/shared/links" %>
\ No newline at end of file |