No release in over 3 years
Low commit activity in last 3 years
Bootstrap views for Devise with I18n support.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
 Dependencies

Development

~> 1.6
~> 11.0
 Project Readme

Devise Bootstrap Views

Here are some of the highlights:

  • Devise views with Bootstrap 4
  • Responsive layout
  • I18n support

Screenshot

Installation

Make sure Bootstrap 4 is installed, either as a Ruby gem or using CDN:

<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/css/bootstrap.min.css" integrity="sha384-MCw98/SFnGE8fJT3GXwEOngsV7Zt27NXFoaoApmYm81iuXoPkFOJwJ8ERdknLPMO" crossorigin="anonymous">

Add this line to your application's Gemfile:

gem 'devise-bootstrap-views', '~> 1.0'

And then execute:

$ bundle install

I18n

Install devise-i18n for other locales. Make sure to insert gem 'devise-i18n' before gem 'devise-bootstrap-views', see #55.

Customizing Views

The devise:views:bootstrap_templates generator will copy all views to your application, so you can modify the files as you wish:

$ rails generate devise:views:bootstrap_templates

Contributing

  1. Fork it ( https://github.com/hisea/devise-bootstrap-views/fork )
  2. Create your feature branch (git checkout -b my-new-feature)
  3. Commit your changes (git commit -am 'Add some feature')
  4. Push to the branch (git push origin my-new-feature)
  5. Create a new Pull Request