mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2025-07-09 03:14:30 -04:00
Update views to include Invoice Ninja Logo
This commit is contained in:
parent
8a582f7800
commit
cd6e1fe5c6
@ -9,6 +9,7 @@
|
||||
<div class="card-group">
|
||||
<div class="card p-4">
|
||||
<div class="card-body">
|
||||
|
||||
<form method="POST" action="{{ route('password.update') }}">
|
||||
@csrf
|
||||
<input type="hidden" name="token" value="{{ $token }}">
|
||||
|
@ -10,6 +10,7 @@
|
||||
alt="Background image">
|
||||
</div>
|
||||
@endif
|
||||
|
||||
<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="flex flex-col">
|
||||
|
@ -3,7 +3,15 @@
|
||||
|
||||
@section('body')
|
||||
<div class="flex h-screen">
|
||||
|
||||
<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">
|
||||
<h1 class="text-center text-3xl">{{ ctrans('texts.password_recovery') }}</h1>
|
||||
<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">
|
||||
@csrf
|
||||
<div class="flex flex-col">
|
||||
|
||||
<label for="email" class="text-sm text-gray-600">{{ ctrans('texts.email_address') }}</label>
|
||||
<input type="email" name="email" id="email"
|
||||
class="input"
|
||||
|
@ -4,6 +4,13 @@
|
||||
@section('body')
|
||||
<div class="flex h-screen">
|
||||
<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">
|
||||
<h1 class="text-center text-3xl">{{ ctrans('texts.password_reset') }}</h1>
|
||||
@if(session('status'))
|
||||
|
Loading…
x
Reference in New Issue
Block a user