52 lines
1.8 KiB
PHP
Executable File
52 lines
1.8 KiB
PHP
Executable File
<!DOCTYPE html>
|
|
<html lang="en">
|
|
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<meta name="csrf-token" content="{{ csrf_token() }}">
|
|
<title>Login - Radical Hive</title>
|
|
|
|
@if (env('APP_ENV') === 'production')
|
|
<!-- if production -->
|
|
<link rel="stylesheet" href="/resources/dist/{{ $manifest['main.js']['css'][0] }}" />
|
|
<script type="module" src="/vendor/lucent/dist/{{ $manifest['main.js']['file'] }}"></script>
|
|
@else
|
|
<!-- if development -->
|
|
@vite(['resources/sass/app.scss', 'resources/js/app.js'])
|
|
@endif
|
|
<link rel="preconnect" href="https://fonts.googleapis.com">
|
|
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
|
<link href="https://fonts.googleapis.com/css2?family=Fira+Mono:wght@400;500;700&display=swap" rel="stylesheet">
|
|
|
|
{{-- <link rel="icon" type="image/x-icon" href="/favicon.ico"/> --}}
|
|
|
|
</head>
|
|
|
|
<body>
|
|
<div class="login flex">
|
|
<div class="loginLeft">
|
|
<div class="loginCircle">
|
|
<div class="infoPane flex">
|
|
<img src="images/beekeper-black.png"></img>
|
|
<span class="welcomeText">Welcome to <u>The Hive</u>,<br> a highly reactive place</span>
|
|
<div class="logo">
|
|
</div>
|
|
</div>
|
|
|
|
</div>
|
|
</div>
|
|
<div class="loginForm">
|
|
<span class="blue bold">Log In</span>
|
|
<form action="/login" method="POST">
|
|
@csrf
|
|
<input type="email" name="email" placeholder="Email"></input>
|
|
<button type="submit" class="primary">Log in</button>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
|
|
</body>
|
|
|
|
</html>
|