1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-11-05 18:52:44 +01:00

Add logo to confirmed page (#3735)

* Updated

* bring

* Add logo to confirmed page
This commit is contained in:
Benjamin Beganović 2020-05-23 00:28:57 +02:00 committed by GitHub
parent 347296684c
commit 586424d2c0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
8 changed files with 8 additions and 17 deletions

View File

@ -25,7 +25,6 @@
"resolve-url-loader": "^3.1.0",
"sass": "^1.15.2",
"sass-loader": "^8.0.0",
"tailwindcss": "^1.4",
"turbolinks": "^5.2.0"
"tailwindcss": "^1.4"
}
}

2
public/css/app.css vendored

File diff suppressed because one or more lines are too long

Binary file not shown.

After

Width:  |  Height:  |  Size: 23 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.7 KiB

2
public/js/app.js vendored

File diff suppressed because one or more lines are too long

View File

@ -1,6 +1,6 @@
{
"/js/app.js": "/js/app.js?id=49b0ee243139f6e72bd9",
"/css/app.css": "/css/app.css?id=1eeeaa187be823b49020",
"/js/app.js": "/js/app.js?id=8b49701583f407403ddf",
"/css/app.css": "/css/app.css?id=9082c02ea8f150e2a3e9",
"/js/clients/invoices/action-selectors.js": "/js/clients/invoices/action-selectors.js?id=3e58537817b968346c9f",
"/js/clients/invoices/payment.js": "/js/clients/invoices/payment.js?id=af49e24958be5fc00c92",
"/js/clients/payment_methods/authorize-stripe-card.js": "/js/clients/payment_methods/authorize-stripe-card.js?id=f4c45f0da9868d840799",

9
resources/js/app.js vendored
View File

@ -5,12 +5,3 @@
* https://github.com/axios/axios
*/
window.axios = require("axios");
/**
* Turoblinks
*
* Turbolinks makes navigating your web application faster
* https://github.com/turbolinks/turbolinks
*/
const Turbolinks = require("turbolinks");
Turbolinks.start();

View File

@ -5,7 +5,8 @@
<div class="flex h-screen">
<div class="m-auto md:w-1/3 lg:w-1/5">
<div class="flex flex-col items-center">
<h1 class="text-center text-3xl">{{ ctrans('texts.confirmation') }}</h1>
<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>