This commit is contained in:
2026-03-17 02:59:09 -05:00
parent dd2d0d890f
commit 382e893836

View File

@@ -16,19 +16,21 @@
@endif
</head>
<body>
<div class="card">
@if (session('error'))
<div class="error">{{ session('error') }}</div>
@endif
<h1 style="margin:0 0 16px;">Sign in with EVE Online</h1>
<div class="container">
<div class="card">
@if (session('error'))
<div class="error">{{ session('error') }}</div>
@endif
<h1 style="margin:0 0 16px;">Sign in with EVE Online</h1>
<a class="btn-img" href="{{ route('login.eve') }}" aria-label="Login with EVE Online">
{{-- Put the official EVE SSO image in: public/images/eve-sso.png --}}
<img src="{{ asset('images/eve-sso-login-white-large.png') }}" alt="EVE Online Single Sign-On">
</a>
<a class="btn-img" href="{{ route('login.eve') }}" aria-label="Login with EVE Online">
{{-- Put the official EVE SSO image in: public/images/eve-sso.png --}}
<img src="{{ asset('images/eve-sso-login-white-large.png') }}" alt="EVE Online Single Sign-On">
</a>
<div class="hint">Click the image to begin the EVE Online SSO flow.</div>
<div class="hint">Click the image to begin the EVE Online SSO flow.</div>
</div>
</div>
</body>
</html>