Bootstrap-form-validation: http://twitterbootstrap.org/bootstrap-form-validation http://twitterbootstrap.org/ http://arvindkushwah9.blogspot.in/ Link timer Clock Set Time: https://codepen.io/SitePoint/pen/MwNPVq User Authentication: Devise gem Link: https://github.com/plataformatec/devise 1. Add devise gem in to Gemfile gem 'devise' 2. Run “bundle install” 3. Next, you need to run the generator: $ rails generate devise:install 4. Add file: Here is a possible configuration for config/environments/development.rb : config.action_mailer.default_url_options = { host: 'localhost', port: 3000 } 5. Generate model rails generate devise MODEL MODEL cam be User, Admin, Customer e.t.c 6. Run “rake db:migrate ” 7. Restart server 8. Controller filters and helpers: app/controller/ module controller like articles_controller.rb : before_action :authentic...