mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-09-16 09:51:16 +00:00
48 lines
1.7 KiB
Twig
48 lines
1.7 KiB
Twig
<!DOCTYPE html>
|
|
<html lang="{{ trans('config.html_language') }}">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="robots" content="noindex, nofollow, noarchive, noodp, NoImageIndex, noydir">
|
|
<title>Firefly III</title>
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
<meta content='width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no' name='viewport'>
|
|
<base href="{{ route('index') }}/">
|
|
<link rel="stylesheet" href="v1/lib/bs/css/bootstrap.min.css?v={{ FF_VERSION }}" type="text/css" media="all" nonce="{{ JS_NONCE }}">
|
|
<link rel="stylesheet" href="v1/lib/fa/css/font-awesome.min.css?v={{ FF_VERSION }}" type="text/css" media="all" nonce="{{ JS_NONCE }}">
|
|
<link href="v1/lib/adminlte/css/AdminLTE.min.css?v={{ FF_VERSION }}" rel="stylesheet" type="text/css" nonce="{{ JS_NONCE }}">
|
|
|
|
{# favicons #}
|
|
{% include('partials.favicons') %}
|
|
|
|
</head>
|
|
<body class="container">
|
|
<div class="row">
|
|
<div class="col-lg-10 col-lg-offset-1 col-md-12 col-sm-12 col-xs-12">
|
|
<h1><a href="{{ route('index') }}"><strong>Firefly</strong>III</a></h1>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="row">
|
|
<div class="col-lg-10 col-lg-offset-1 col-md-12 col-sm-12 col-xs-12">
|
|
<h3 class="text-info">{{ 'two_factor_lost_header'|_ }}</h3>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="row">
|
|
<div class="col-lg-10 col-lg-offset-1 col-md-12 col-sm-12 col-xs-12">
|
|
<p>
|
|
{{ 'two_factor_lost_intro'|_ }}
|
|
</p>
|
|
<ul>
|
|
<li>
|
|
{{ 'two_factor_lost_fix_self'|_ }}
|
|
</li>
|
|
<li>
|
|
{{ trans('firefly.two_factor_lost_fix_owner', {site_owner: siteOwner})|raw }}
|
|
</li>
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html>
|