about summary refs log tree commit diff
path: root/app/views/layouts/auth.html.haml
blob: 52d567280b09944d4c8b8109bd49b03785d2099b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
- content_for :content do
  .container
    .logo-container
      %h1
        = link_to root_path do
          = image_tag 'logo.png'
          %small= Rails.configuration.x.local_domain

    .form-container
      - if flash[:notice]
        .flash-message.notice= flash[:notice]

      - if flash[:alert]
        .flash-message.alert= flash[:alert]

      = yield

= render template: "layouts/application"