Archived
2
0
Fork 0
This repository has been archived on 2024-06-09. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
mastodon/app/views/layouts/auth.html.haml

22 lines
468 B
Text

- content_for :header_tags do
= javascript_include_tag 'application_public'
- content_for :content do
.container
.logo-container
%h1
= link_to root_path do
= image_tag 'logo.png'
.form-container
- if flash[:notice]
.flash-message.notice
%strong= flash[:notice]
- if flash[:alert]
.flash-message.alert
%strong= flash[:alert]
= yield
= render template: "layouts/application"