blob: 93276522e887f13e0aba4cce7c9d6a0b2e2a9406 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
h2 = t('devise.unlock.new.title')
= form_for(resource, :as => resource_name, :url => unlock_path(resource_name), :html => { :method => :post }) do |f|
= devise_error_messages!
p
= f.label :email
br
= f.text_field :email
p = f.submit t('devise.unlock.new.title')
= render "links"
|