• Stars
    star
    284
  • Rank 140,852 (Top 3 %)
  • Language
    HTML
  • License
    MIT License
  • Created about 10 years ago
  • Updated about 2 years ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

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