88 lines
3.9 KiB
PHP
88 lines
3.9 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">
|
|
<meta name="csrf-token" content="{{ csrf_token() }}">
|
|
<meta property="og:title" content="Aigo@w33zard" />
|
|
<meta property="og:description" content="AIGO: AI-recommended Guidance for Obesity management " />
|
|
<meta property="og:image" content="{{ asset('/asset/png/thumbnail.png') }}"/>
|
|
<meta property="og:url" content="https://aigo.w333zard.my.id/" />
|
|
<link rel="shortcut icon" href="{{ asset('/asset/svg/logo.svg') }}" />
|
|
|
|
<title>Login</title>
|
|
|
|
<!-- Fonts -->
|
|
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-QWTKZyjpPEjISv5WaRU9OFeRpok6YctnYmDr5pNlyT2bRjXh0JMhjY6hW+ALEwIH" crossorigin="anonymous">
|
|
<link rel="preconnect" href="https://fonts.bunny.net">
|
|
<link href="https://fonts.bunny.net/css?family=figtree:400,500,600&display=swap" rel="stylesheet" />
|
|
<script src="https://cdn.tailwindcss.com"></script>
|
|
<style>
|
|
.plogin{
|
|
font-size: 36px;
|
|
color: #6983BF;
|
|
}
|
|
</style>
|
|
|
|
<!-- Scripts -->
|
|
@vite(['resources/css/app.css', 'resources/js/app.js'])
|
|
</head>
|
|
<body class="font-sans text-gray-900 antialiased">
|
|
@include('navbar')
|
|
<div class="min-h-screen flex flex-col sm:justify-center items-center pt-6 sm:pt-0" style="background-color:#1C2541">
|
|
|
|
<div class="w-full sm:max-w-sm mt-6 px-6 py-4 bg-white dark:bg-gray-800 shadow-md overflow-hidden sm:rounded-lg">
|
|
<p class="plogin justify-center text-center">Login</p>
|
|
|
|
<form method="POST" action="{{ route('strava.authorize') }}">
|
|
@csrf
|
|
|
|
<!-- Email Address -->
|
|
<div>
|
|
<x-input-label for="email" :value="__('Email')" />
|
|
<x-text-input id="email" class="block mt-1 w-full" style="width: 335px;" type="email" name="email" :value="old('email')" required autofocus autocomplete="username" />
|
|
<x-input-error :messages="$errors->get('email')" class="mt-2" />
|
|
</div>
|
|
|
|
<!-- Password -->
|
|
<div class="mt-4">
|
|
<x-input-label for="password" :value="__('Password')" />
|
|
|
|
<x-text-input id="password" class="block mt-1 w-full " style="width: 335px;"
|
|
type="password"
|
|
name="password"
|
|
required autocomplete="current-password" />
|
|
|
|
<x-input-error :messages="$errors->get('password')" class="mt-2" />
|
|
</div>
|
|
|
|
<!-- Remember Me -->
|
|
<div class="block mt-4">
|
|
<label for="remember_me" class="inline-flex items-center">
|
|
<input id="remember_me" type="checkbox" class="rounded border-gray-300 text-indigo-600 shadow-sm focus:border-indigo-300 focus:ring focus:ring-indigo-200 focus:ring-opacity-50" name="remember">
|
|
<span class="ml-2 text-sm text-gray-600">{{ __('Remember me') }}</span>
|
|
</label>
|
|
</div>
|
|
|
|
<div class="flex items-center justify-center">
|
|
|
|
<x-primary-button class="ms-3 text-center justify-center" style="width: 289px; background-color:#37B3B7">
|
|
{{ __('Log in') }}
|
|
</x-primary-button>
|
|
</div>
|
|
|
|
|
|
<div class="flex items-center justify-center">
|
|
<p style="color:#8296C5; font-size: 12px;">Belum memiliki akun?<a class="btn btn-link" href="/register" style="font-size: 12px;">Daftar sekarang</a></p>
|
|
</div>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/js/bootstrap.bundle.min.js" integrity="sha384-YvpcrYf0tY3lHB60NNkmXc5s9fDVZLESaAA55NDzOxhy9GkcIdslK1eN7N6jIeHz" crossorigin="anonymous"></script>
|
|
</body>
|
|
</html>
|
|
|
|
|
|
|
|
|