Update pricing UX, billing flows, and API rules
This commit is contained in:
53
app/resources/views/auth/login.blade.php
Normal file
53
app/resources/views/auth/login.blade.php
Normal file
@@ -0,0 +1,53 @@
|
||||
<x-guest-layout>
|
||||
@section('title', 'Login - '.config('app.name', 'Dewemoji'))
|
||||
<!-- Session Status -->
|
||||
<x-auth-session-status class="mb-4" :status="session('status')" />
|
||||
|
||||
<form method="POST" action="{{ route('login') }}" class="space-y-5">
|
||||
@csrf
|
||||
|
||||
<!-- Email Address -->
|
||||
<div>
|
||||
<x-input-label for="email" :value="__('Email')" />
|
||||
<x-text-input id="email" class="block mt-1 w-full" 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"
|
||||
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-slate-300 text-blue-600 shadow-sm focus:ring-blue-500/40 dark:border-slate-700 dark:bg-slate-900/70" name="remember">
|
||||
<span class="ms-2 text-sm text-slate-600 dark:text-slate-300">{{ __('Remember me') }}</span>
|
||||
</label>
|
||||
</div>
|
||||
|
||||
<div class="flex flex-col gap-3">
|
||||
<x-primary-button class="w-full justify-center">
|
||||
{{ __('Log in') }}
|
||||
</x-primary-button>
|
||||
|
||||
@if (Route::has('password.request'))
|
||||
<a class="text-center text-sm text-slate-600 hover:text-slate-900 dark:text-slate-300 dark:hover:text-white underline rounded-md focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-blue-500/40" href="{{ route('password.request') }}">
|
||||
{{ __('Forgot your password?') }}
|
||||
</a>
|
||||
@endif
|
||||
</div>
|
||||
|
||||
<div class="text-center text-sm text-slate-600 dark:text-slate-300">
|
||||
Don't have an account?
|
||||
<a class="font-semibold text-blue-600 hover:text-blue-500 dark:text-blue-300 dark:hover:text-blue-200" href="{{ route('register') }}">Register</a>
|
||||
</div>
|
||||
</form>
|
||||
</x-guest-layout>
|
||||
Reference in New Issue
Block a user