BannerDayAPI/resources/views/welcome.blade.php

44 lines
1.1 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">
<title>Banner Day API</title>
<style>
body {
background: whitesmoke;
width: 100vw;
height: 100%;
display: flex;
justify-content: center;
align-items: center;
}
div.centered-header {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
div.centered-header > span {
margin-bottom: 2em;
}
h1, a {
color: darkslategray;
}
</style>
</head>
<body>
<div class="centered-header">
<h1>Banner Day API</h1>
<span>Version {{ config('app.version') }}</span>
<a href="{{ config('app.frontend_url') }}">Go to login page&nbsp;&#8688;</a>
</div>
</body>
</html>