Update views to include Invoice Ninja Logo

This commit is contained in:
David Bomba 2021-05-13 20:49:28 +10:00
parent 8a582f7800
commit cd6e1fe5c6
4 changed files with 18 additions and 0 deletions

View File

@ -9,6 +9,7 @@
<div class="card-group"> <div class="card-group">
<div class="card p-4"> <div class="card p-4">
<div class="card-body"> <div class="card-body">
<form method="POST" action="{{ route('password.update') }}"> <form method="POST" action="{{ route('password.update') }}">
@csrf @csrf
<input type="hidden" name="token" value="{{ $token }}"> <input type="hidden" name="token" value="{{ $token }}">

View File

@ -10,6 +10,7 @@
alt="Background image"> alt="Background image">
</div> </div>
@endif @endif
<div class="col-span-2 h-screen flex"> <div class="col-span-2 h-screen flex">
<div class="m-auto w-1/2 md:w-1/3 lg:w-1/4"> <div class="m-auto w-1/2 md:w-1/3 lg:w-1/4">
<div class="flex flex-col"> <div class="flex flex-col">

View File

@ -3,7 +3,15 @@
@section('body') @section('body')
<div class="flex h-screen"> <div class="flex h-screen">
<div class="m-auto md:w-1/3 lg:w-1/5"> <div class="m-auto md:w-1/3 lg:w-1/5">
@if(\App\Models\Account::count() > 0 && !\App\Models\Account::first()->isPaid())
<div>
<img src="{{ asset('images/invoiceninja-black-logo-2.png') }}" class="border-b border-gray-100 h-18 pb-4" alt="Invoice Ninja logo">
</div>
@endif
<div class="flex flex-col"> <div class="flex flex-col">
<h1 class="text-center text-3xl">{{ ctrans('texts.password_recovery') }}</h1> <h1 class="text-center text-3xl">{{ ctrans('texts.password_recovery') }}</h1>
<p class="text-center opacity-75">{{ ctrans('texts.reset_password_text') }}</p> <p class="text-center opacity-75">{{ ctrans('texts.reset_password_text') }}</p>
@ -15,6 +23,7 @@
<form action="{{ route('password.email') }}" method="post" class="mt-6"> <form action="{{ route('password.email') }}" method="post" class="mt-6">
@csrf @csrf
<div class="flex flex-col"> <div class="flex flex-col">
<label for="email" class="text-sm text-gray-600">{{ ctrans('texts.email_address') }}</label> <label for="email" class="text-sm text-gray-600">{{ ctrans('texts.email_address') }}</label>
<input type="email" name="email" id="email" <input type="email" name="email" id="email"
class="input" class="input"

View File

@ -4,6 +4,13 @@
@section('body') @section('body')
<div class="flex h-screen"> <div class="flex h-screen">
<div class="m-auto md:w-1/3 lg:w-1/5"> <div class="m-auto md:w-1/3 lg:w-1/5">
@if(\App\Models\Account::count() > 0 && !\App\Models\Account::first()->isPaid())
<div>
<img src="{{ asset('images/invoiceninja-black-logo-2.png') }}" class="border-b border-gray-100 h-18 pb-4" alt="Invoice Ninja logo">
</div>
@endif
<div class="flex flex-col"> <div class="flex flex-col">
<h1 class="text-center text-3xl">{{ ctrans('texts.password_reset') }}</h1> <h1 class="text-center text-3xl">{{ ctrans('texts.password_reset') }}</h1>
@if(session('status')) @if(session('status'))