1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-11-11 05:32:39 +01:00
invoiceninja/resources/views/themes/ninja2020/auth/confirmed.blade.php
Benjamin Beganović 586424d2c0
Add logo to confirmed page (#3735)
* Updated

* bring

* Add logo to confirmed page
2020-05-23 08:28:57 +10:00

15 lines
743 B
PHP

@extends('portal.ninja2020.layout.clean')
@section('meta_title', ctrans('texts.confirmation'))
@section('body')
<div class="flex h-screen">
<div class="m-auto md:w-1/3 lg:w-1/5">
<div class="flex flex-col items-center">
<img src="{{ asset('images/invoiceninja-black-logo-2.png') }}" class="border-b border-gray-100 h-18 pb-4" alt="Invoice Ninja logo">
<h1 class="text-center text-3xl mt-10">{{ ctrans('texts.confirmation') }}</h1>
<p class="text-center opacity-75">{{ $message }}</p>
<a class="button button-primary text-center mt-8" href="{{ url('/') }}">{{ ctrans('texts.return_to_login') }}</a>
</div>
</div>
</div>
@endsection