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:
parent
347296684c
commit
586424d2c0
@ -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
2
public/css/app.css
vendored
File diff suppressed because one or more lines are too long
BIN
public/images/invoiceninja-black-logo-2.png
Normal file
BIN
public/images/invoiceninja-black-logo-2.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 23 KiB |
BIN
public/images/invoiceninja-black-logo.png
Normal file
BIN
public/images/invoiceninja-black-logo.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 4.7 KiB |
2
public/js/app.js
vendored
2
public/js/app.js
vendored
File diff suppressed because one or more lines are too long
@ -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",
|
||||
|
11
resources/js/app.js
vendored
11
resources/js/app.js
vendored
@ -4,13 +4,4 @@
|
||||
* Promise based HTTP client for the browser and node.js
|
||||
* 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();
|
||||
window.axios = require("axios");
|
@ -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>
|
||||
|
Loading…
Reference in New Issue
Block a user