OpenFest: Remove unnecessary devise views

This commit is contained in:
Petko Bordjukov 2015-08-05 16:05:42 +03:00
parent adb5ca34b6
commit 2231a65227
4 changed files with 0 additions and 35 deletions

View File

@ -1,5 +0,0 @@
<%= t(:welcome, name: @email) %>!
<%= t(:confirm_by_clicking) %>
<%= confirmation_url(@resource, confirmation_token: @token) %>

View File

@ -1,8 +0,0 @@
<%= t(:hello, name: @resource.email) %>!
<%= t(:someone_requested_passreset) %>
<%= edit_password_url(@resource, reset_password_token: @token) %>
<%= t(:do_not_want_pass_reset1) %>
<%= t(:do_not_want_pass_reset2) %>

View File

@ -1,7 +0,0 @@
<%= t(:hello, name: @resource.email) %>!
<%= t(:account_locked) %>
<%= t(:click_to_unlock) %>
<%= unlock_url(@resource, unlock_token: @token) %>

View File

@ -1,15 +0,0 @@
- content_for(:title) { ":: #{t :resend_unlock_instructions_title}" }
h2 =t :resend_unlock_instructions_title
= simple_form_for(resource, as: resource_name, url: unlock_path(resource_name), html: { method: :post }) do |f|
= f.error_notification
= f.full_error :unlock_token
.form-inputs
= f.input :email, required: true, autofocus: true, hint: false
.form-actions
= f.button :submit, t(:resend_instructions_btn)
== render 'devise/shared/links'