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

25 lines
537 B
Plaintext
Raw Normal View History

- content_for :header_tags do
= javascript_pack_tag 'public', crossorigin: 'anonymous'
- content_for :content do
2021-11-15 15:31:01 +01:00
.auth-page.content
.container-alt
.logo-container
%h1
= link_to root_path do
= svg_logo_full
.img-custom
2021-11-15 18:12:55 +01:00
%h2.title.is-2
= t('auth.login')
2021-11-15 15:31:01 +01:00
= image_tag asset_pack_path('media/images/bliss/login.jpg'), alt: @instance_presenter.site_title
2021-11-15 15:31:01 +01:00
.form-container
= render 'flashes'
2016-10-03 16:38:22 +02:00
2021-11-15 18:12:55 +01:00
2021-11-15 15:31:01 +01:00
= yield
= render template: 'layouts/application'