mirror of
https://github.com/Kovah/LinkAce.git
synced 2025-02-24 11:13:02 +01:00
28 lines
662 B
PHP
28 lines
662 B
PHP
<!DOCTYPE html>
|
|
<html lang="{{ str_replace('_', '-', app()->getLocale()) }}">
|
|
<head>
|
|
@include('partials.header')
|
|
</head>
|
|
<body>
|
|
<div id="app">
|
|
|
|
<main class="main container">
|
|
<div class="row justify-content-center">
|
|
<div class="col-12 col-md-8 text-center">
|
|
|
|
<div class="mb-5 display-2 text-center text-primary">
|
|
<x-icon.linkace/>
|
|
</div>
|
|
|
|
<a href="{{ route('login') }}" class="btn btn-lg btn-primary">
|
|
<x-icon.unlock class="mr-2"/> @lang('linkace.login')
|
|
</a>
|
|
|
|
</div>
|
|
</div>
|
|
</main>
|
|
|
|
</div>
|
|
</body>
|
|
</html>
|