Where is the entrance to enter Devise-Rails 3

It might be a stupid question, but my login looks like complete shit and is not included in any of the CSS styles from other pages.

For some reason I cannot find this view even for editing it. The only folders in my views are posts, pages, and layout. Does anyone know how I can edit what this view looks like?

my route.rb:

Projectmadrone::Application.routes.draw do
   mount RailsAdmin::Engine => '/admin', :as => 'rails_admin'

  devise_for :users
  devise_for :users do get '/users/sign_out' => 'devise/sessions#destroy' end

  resources :posts

user model:

class User < ActiveRecord::Base

  devise :database_authenticatable, :registerable,
     :recoverable, :rememberable, :trackable, :validatable


  attr_accessible :email, :password, :password_confirmation, :remember_me


  has_many :posts
 end
+5
source share
1 answer

You need to run the generator to view the views, this will copy them to your application (they live in the stone by default):

rails g devise:views

Here's more info on customizing views here: https://github.com/plataformatec/devise#configuring-views

, , , . . /views/devise/registration. . .

+8

All Articles