Refactor views and CSS

This commit is contained in:
James Cole
2024-03-09 12:11:06 +01:00
parent 46a60af966
commit 0ff405d1e0
16 changed files with 867 additions and 461 deletions

View File

@@ -0,0 +1,30 @@
@extends('layout.v2.error')
@section('content')
<div class="row">
<div class="col">
<h1><a href="{{ route('index') }}"><strong>Firefly</strong> III</a></h1>
</div>
</div>
<div class="row">
<div class="col">
<h2>{{ __('firefly.two_factor_lost_header') }}</h2>
</div>
</div>
<div class="row">
<div class="col-lg-10 col-lg-offset-1 col-md-12 col-sm-12 col-xs-12">
<p>
{{ trans('firefly.two_factor_lost_intro') }}
</p>
<ul>
<li>
{!! trans('firefly.two_factor_lost_fix_self') !!}
</li>
<li>
{!! trans('firefly.two_factor_lost_fix_owner', ['site_owner' => $siteOwner]) !!}
</li>
</ul>
</div>
</div>
@endsection