├── LICENSE ├── README.md ├── devise ├── registrations │ └── new.html.erb ├── sessions │ └── new.html.erb └── shared │ └── _error_messages.html.erb └── layouts └── application.html.erb /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johngthecreator/crimson/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johngthecreator/crimson/HEAD/README.md -------------------------------------------------------------------------------- /devise/registrations/new.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johngthecreator/crimson/HEAD/devise/registrations/new.html.erb -------------------------------------------------------------------------------- /devise/sessions/new.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johngthecreator/crimson/HEAD/devise/sessions/new.html.erb -------------------------------------------------------------------------------- /devise/shared/_error_messages.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johngthecreator/crimson/HEAD/devise/shared/_error_messages.html.erb -------------------------------------------------------------------------------- /layouts/application.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johngthecreator/crimson/HEAD/layouts/application.html.erb --------------------------------------------------------------------------------