1. Add Devise Gem
Open up your Gemfile and add this line
gem 'devise'
Then run;
bundle install
2. Set up devise in your app
Run the following command in the terminal
rails g devise:install
3. Configure Devise
Ensure you have defined default url options in your environments files. Open...