forked from hmlON/room538
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
32 changed files
with
705 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,11 @@ | ||
class ApplicationController < ActionController::Base | ||
before_action :configure_permitted_parameters, if: :devise_controller? | ||
|
||
protect_from_forgery with: :exception | ||
|
||
protected | ||
|
||
def configure_permitted_parameters | ||
devise_parameter_sanitizer.permit(:sign_up, keys: [:name]) | ||
end | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
# User is a preson, who lives in a hostel room | ||
class User < ApplicationRecord | ||
devise :database_authenticatable, :registerable, | ||
:recoverable, :rememberable, :trackable, :validatable | ||
validates :name, presence: true | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
h2 | ||
| Resend confirmation instructions | ||
= form_for(resource, as: resource_name, url: confirmation_path(resource_name), html: { method: :post }) do |f| | ||
= devise_error_messages! | ||
.field | ||
= f.label :email | ||
br | ||
= f.email_field :email, autofocus: true, value: (resource.pending_reconfirmation? ? resource.unconfirmed_email : resource.email) | ||
.actions | ||
= f.submit "Resend confirmation instructions" | ||
= render "devise/shared/links" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
p | ||
| Welcome | ||
| ! | ||
p | ||
| You can confirm your account email through the link below: | ||
p | ||
= link_to 'Confirm my account', confirmation_url(@resource, confirmation_token: @token) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
p | ||
| Hello | ||
= @resource.email | ||
| ! | ||
p | ||
| We're contacting you to notify you that your password has been changed. |
12 changes: 12 additions & 0 deletions
12
app/views/devise/mailer/reset_password_instructions.html.slim
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
p | ||
| Hello | ||
= @resource.email | ||
| ! | ||
p | ||
| Someone has requested a link to change your password. You can do this through the link below. | ||
p | ||
= link_to 'Change my password', edit_password_url(@resource, reset_password_token: @token) | ||
p | ||
| If you didn't request this, please ignore this email. | ||
p | ||
| Your password won't change until you access the link above and create a new one. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
p | ||
| Hello | ||
= @resource.email | ||
| ! | ||
p | ||
| Your account has been locked due to an excessive number of unsuccessful sign in attempts. | ||
p | ||
| Click the link below to unlock your account: | ||
p | ||
= link_to 'Unlock my account', unlock_url(@resource, unlock_token: @token) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
h2 | ||
| Change your password | ||
= form_for(resource, as: resource_name, url: password_path(resource_name), html: { method: :put }) do |f| | ||
= devise_error_messages! | ||
= f.hidden_field :reset_password_token | ||
.field | ||
= f.label :password, "New password" | ||
br | ||
- if @minimum_password_length | ||
em | ||
| ( | ||
= @minimum_password_length | ||
| characters minimum) | ||
br | ||
= f.password_field :password, autofocus: true, autocomplete: "off" | ||
.field | ||
= f.label :password_confirmation, "Confirm new password" | ||
br | ||
= f.password_field :password_confirmation, autocomplete: "off" | ||
.actions | ||
= f.submit "Change my password" | ||
= render "devise/shared/links" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
h2 | ||
| Forgot your password? | ||
= form_for(resource, as: resource_name, url: password_path(resource_name), html: { method: :post }) do |f| | ||
= devise_error_messages! | ||
.field | ||
= f.label :email | ||
br | ||
= f.email_field :email, autofocus: true | ||
.actions | ||
= f.submit "Send me reset password instructions" | ||
= render "devise/shared/links" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
h2 | ||
| Edit | ||
= resource_name.to_s.humanize | ||
= form_for(resource, as: resource_name, url: registration_path(resource_name), html: { method: :put }) do |f| | ||
= devise_error_messages! | ||
.field | ||
= f.label :email | ||
br | ||
= f.email_field :email, autofocus: true | ||
- if devise_mapping.confirmable? && resource.pending_reconfirmation? | ||
div | ||
| Currently waiting confirmation for: | ||
= resource.unconfirmed_email | ||
.field | ||
= f.label :password | ||
i | ||
| (leave blank if you don't want to change it) | ||
br | ||
= f.password_field :password, autocomplete: "off" | ||
- if @minimum_password_length | ||
br | ||
em | ||
= @minimum_password_length | ||
| characters minimum | ||
.field | ||
= f.label :password_confirmation | ||
br | ||
= f.password_field :password_confirmation, autocomplete: "off" | ||
.field | ||
= f.label :current_password | ||
i | ||
| (we need your current password to confirm your changes) | ||
br | ||
= f.password_field :current_password, autocomplete: "off" | ||
.actions | ||
= f.submit "Update" | ||
h3 | ||
| Cancel my account | ||
p | ||
| Unhappy? | ||
= button_to "Cancel my account", registration_path(resource_name), data: { confirm: "Are you sure?" }, method: :delete | ||
= link_to "Back", :back |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
h2 Sign up | ||
= form_for(resource, as: resource_name, url: registration_path(resource_name)) do |f| | ||
= devise_error_messages! | ||
.field | ||
= f.label :name | ||
br | ||
= f.email_field :name, autofocus: true | ||
.field | ||
= f.label :email | ||
br | ||
= f.email_field :email | ||
.field | ||
= f.label :password | ||
- if @minimum_password_length | ||
em | ||
| ( | ||
= @minimum_password_length | ||
| characters minimum) | ||
br | ||
= f.password_field :password, autocomplete: "off" | ||
.actions | ||
= f.submit "Sign up" | ||
= render "devise/shared/links" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
h2 | ||
| Sign in | ||
= form_for(resource, as: resource_name, url: session_path(resource_name)) do |f| | ||
.field | ||
= f.label :email | ||
br | ||
= f.email_field :email, autofocus: true | ||
.field | ||
= f.label :password | ||
br | ||
= f.password_field :password, autocomplete: "off" | ||
- if devise_mapping.rememberable? | ||
.field | ||
= f.check_box :remember_me | ||
= f.label :remember_me | ||
.actions | ||
= f.submit "Sign in" | ||
= render "devise/shared/links" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
- if controller_name != 'sessions' | ||
= link_to "Sign in", new_session_path(resource_name) | ||
br | ||
- if devise_mapping.registerable? && controller_name != 'registrations' | ||
= link_to "Sign up", new_registration_path(resource_name) | ||
br | ||
- if devise_mapping.recoverable? && controller_name != 'passwords' && controller_name != 'registrations' | ||
= link_to "Forgot your password?", new_password_path(resource_name) | ||
br | ||
- if devise_mapping.confirmable? && controller_name != 'confirmations' | ||
= link_to "Didn't receive confirmation instructions?", new_confirmation_path(resource_name) | ||
br | ||
- if devise_mapping.lockable? && resource_class.unlock_strategy_enabled?(:email) && controller_name != 'unlocks' | ||
= link_to "Didn't receive unlock instructions?", new_unlock_path(resource_name) | ||
br | ||
- if devise_mapping.omniauthable? | ||
- resource_class.omniauth_providers.each do |provider| | ||
= link_to "Sign in with #{OmniAuth::Utils.camelize(provider)}", omniauth_authorize_path(resource_name, provider) | ||
br |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
h2 | ||
| Resend unlock instructions | ||
= form_for(resource, as: resource_name, url: unlock_path(resource_name), html: { method: :post }) do |f| | ||
= devise_error_messages! | ||
.field | ||
= f.label :email | ||
br | ||
= f.email_field :email, autofocus: true | ||
.actions | ||
= f.submit "Resend unlock instructions" | ||
= render "devise/shared/links" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
header | ||
nav | ||
ul | ||
- unless user_signed_in? | ||
li = link_to 'Sign up', new_user_registration_path | ||
li = link_to 'Sign in', new_user_session_path | ||
- else | ||
li = link_to 'Sign out', destroy_user_session_path, method: :delete |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
.notifications | ||
- flash.each do |key, value| | ||
div class="alert alert-#{key}" | ||
= value | ||
a.close[href="#" data-dismiss="alert"] × |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.