mastodon/app/views/layouts/auth.html.haml

20 lines
389 B
Plaintext
Raw Normal View History

- content_for :content do
.container
.logo-container
%h1
= link_to root_path do
= image_tag 'logo.png'
.form-container
2016-10-03 16:38:22 +02:00
- if flash[:notice]
2016-10-18 16:37:15 +02:00
.flash-message.notice
%strong= flash[:notice]
2016-10-03 16:38:22 +02:00
- if flash[:alert]
2016-10-18 16:37:15 +02:00
.flash-message.alert
%strong= flash[:alert]
2016-10-03 16:38:22 +02:00
= yield
= render template: "layouts/application"