- Integrate Devise for user authentication - Create User model and necessary views - Implement email confirmation and password reset functionality - Add routing for user sign-up and login - Customize error messages display This commit initiates user authentication in the application using the Devise gem. It includes user registration, login, password reset, and email confirmation features. Additionally, the necessary views and mailer templates are included to support these functionalities. This enhances the security and usability of the application by allowing users to create accounts and manage their passwords effectively.
8 lines
276 B
Plaintext
8 lines
276 B
Plaintext
<p>Hello <%= @resource.email %>!</p>
|
|
|
|
<p>Your account has been locked due to an excessive number of unsuccessful sign in attempts.</p>
|
|
|
|
<p>Click the link below to unlock your account:</p>
|
|
|
|
<p><%= link_to 'Unlock my account', unlock_url(@resource, unlock_token: @token) %></p>
|