mirror of
https://github.com/anna-sara/vbytes_lan.git
synced 2026-03-16 16:25:41 +01:00
Added login to other url
This commit is contained in:
parent
3e4718537e
commit
fcd7149161
4 changed files with 7 additions and 16 deletions
|
|
@ -27,7 +27,7 @@ class AdminPanelProvider extends PanelProvider
|
|||
return $panel
|
||||
->default()
|
||||
->id('admin')
|
||||
->path('')
|
||||
->path('logga_in')
|
||||
->login()
|
||||
->profile()
|
||||
->multiFactorAuthentication([
|
||||
|
|
|
|||
|
|
@ -4,21 +4,6 @@
|
|||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
|
||||
<!-- Matomo -->
|
||||
<script>
|
||||
var _paq = window._paq = window._paq || [];
|
||||
/* tracker methods like "setCustomDimension" should be called before "trackPageView" */
|
||||
_paq.push(['trackPageView']);
|
||||
_paq.push(['enableLinkTracking']);
|
||||
(function() {
|
||||
var u="https://analytics.vbytes.se/";
|
||||
_paq.push(['setTrackerUrl', u+'matomo.php']);
|
||||
_paq.push(['setSiteId', '27']);
|
||||
var d=document, g=d.createElement('script'), s=d.getElementsByTagName('script')[0];
|
||||
g.async=true; g.src=u+'matomo.js'; s.parentNode.insertBefore(g,s);
|
||||
})();
|
||||
</script>
|
||||
<!-- End Matomo Code -->
|
||||
|
||||
|
||||
<title inertia>{{ config('app.name', 'Laravel') }}</title>
|
||||
|
|
|
|||
3
resources/views/home.php
Normal file
3
resources/views/home.php
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
<div class="home" style="width:100%;height:100%;display:flex;justify-content:center;align-items:center;background-color:black;color:white;">
|
||||
<h1> vBytes LAN </h1>
|
||||
</div>
|
||||
|
|
@ -6,5 +6,8 @@ use Illuminate\Support\Facades\Route;
|
|||
use Inertia\Inertia;
|
||||
|
||||
|
||||
Route::get('/', function () {
|
||||
return view('home');
|
||||
});
|
||||
|
||||
require __DIR__.'/auth.php';
|
||||
|
|
|
|||
Loading…
Reference in a new issue