diff options
author | gitlabhq <m@gitlabhq.com> | 2011-10-09 00:36:38 +0300 |
---|---|---|
committer | gitlabhq <m@gitlabhq.com> | 2011-10-09 00:36:38 +0300 |
commit | 9ba1224867665844b117fa037e1465bb706b3685 (patch) | |
tree | 52fbfc1cdb55df21843965479c97be0c91121a9a /app/views/devise/unlocks/new.html.erb | |
parent | 93efff945215a4407afcaf0cba15ac601b56df0d (diff) | |
download | gitlab-ce-9ba1224867665844b117fa037e1465bb706b3685.tar.gz |
init commit
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 |