Implement webhook inspector
This commit is contained in:
@@ -0,0 +1,24 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="{{ str_replace('_', '-', app()->getLocale()) }}" class="bg-slate-950">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<meta name="csrf-token" content="{{ csrf_token() }}">
|
||||
<title>{{ $title ?? 'Authentication · Webhook Inspector' }}</title>
|
||||
|
||||
@if (file_exists(public_path('build/manifest.json')) || file_exists(public_path('hot')))
|
||||
@vite(['resources/css/app.css', 'resources/js/app.js'])
|
||||
@endif
|
||||
</head>
|
||||
<body class="flex min-h-screen items-center justify-center bg-slate-950 px-6 py-12 font-sans text-slate-100 antialiased">
|
||||
<div class="w-full max-w-md">
|
||||
<a href="{{ route('home') }}" class="mb-8 flex items-center justify-center gap-3 font-semibold tracking-tight text-white">
|
||||
<span class="flex size-9 items-center justify-center rounded-xl bg-cyan-400 font-mono text-sm font-bold text-slate-950">WI</span>
|
||||
<span>Webhook Inspector</span>
|
||||
</a>
|
||||
<section class="rounded-2xl border border-white/10 bg-white/[0.04] p-6 shadow-2xl shadow-black/20 sm:p-8">
|
||||
@yield('content')
|
||||
</section>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user