first commit
This commit is contained in:
Executable
+46
@@ -0,0 +1,46 @@
|
||||
<!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 welcomeText">
|
||||
You will recieve an email with a <u>magic link</u>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</body>
|
||||
|
||||
</html>
|
||||
Reference in New Issue
Block a user