2016-12-23 00:04:52 +01:00
|
|
|
- content_for :header_tags do
|
2020-11-06 11:56:31 +01:00
|
|
|
= javascript_pack_tag 'public', crossorigin: 'anonymous'
|
2016-12-23 00:04:52 +01:00
|
|
|
|
2016-03-05 22:43:05 +01:00
|
|
|
- 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
|
|
|
|
= image_tag asset_pack_path('media/images/bliss/login.jpg'), alt: @instance_presenter.site_title
|
2016-03-05 22:43:05 +01:00
|
|
|
|
2021-11-15 15:31:01 +01:00
|
|
|
.form-container
|
|
|
|
= render 'flashes'
|
2016-10-03 16:38:22 +02:00
|
|
|
|
2021-11-15 15:31:01 +01:00
|
|
|
%h2.title.is-2
|
|
|
|
= t('auth.login')
|
|
|
|
|
|
|
|
= yield
|
2016-03-05 22:43:05 +01:00
|
|
|
|
2017-05-08 03:35:25 +02:00
|
|
|
= render template: 'layouts/application'
|