mirror of
https://github.com/Kovah/LinkAce.git
synced 2025-02-24 11:13:02 +01:00
This adjusts multiple components, including the table sorting, link share buttons and link icons. All were changed to use views, dynamic components and the new icons. All views were adjusted to use the new icons instead of the Fontawesome Javascript.
29 lines
715 B
PHP
29 lines
715 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">
|
|
|
|
<img src="{{ asset('assets/img/linkace_logo.svg') }}" alt="@lang('linkace.linkace')"
|
|
width="400" height="147" class="mt-5 mb-5">
|
|
|
|
<br>
|
|
|
|
<a href="{{ route('login') }}" class="btn btn-lg btn-primary">
|
|
<x-icon.ban class="mr-2"/> @lang('linkace.login')
|
|
</a>
|
|
|
|
</div>
|
|
</div>
|
|
</main>
|
|
|
|
</div>
|
|
</body>
|
|
</html>
|