Files
alliance-services/resources/views/auth/eve.blade.php
2026-03-16 19:07:52 -05:00

28 lines
1.0 KiB
PHP

<!doctype html>
<html lang="{{ str_replace('_', '-', app()->getLocale()) }}">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- CSRF Token -->
<meta name="csrf-token" content="{{ csrf_token() }}">
<title>{{ config('app.name', 'Alliance Services SSO Login') }}</title>
<!-- Scripts -->
@vite(['resources/sass/app.scss', 'resources/js/app.js'])
</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>
<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>
</body>
</html>