- Replace logos, colors (red/stone palette), and fonts (Overlock/Inter) - Replace text logos with PNG from marketing API - Update AGPL source links to match repo owner - Update PostgreSQL to 17 for Alpine 3.23 - Add Forgejo Actions CI workflow - Remove upstream GitHub Actions workflows - Remove Coolify Cloud upsells, Hetzner provider, and telemetry - Update auto-update to point to Forgejo registry
20 lines
1.3 KiB
PHP
20 lines
1.3 KiB
PHP
<section class="bg-gray-50 dark:bg-base">
|
|
<div class="flex flex-col items-center justify-center px-6 py-8 mx-auto md:h-screen lg:py-0">
|
|
<div class="flex items-center justify-center mb-6">
|
|
<img src="https://mapledeploy.ca/api/logo/lockup?height=80" alt="MapleDeploy" class="h-12 dark:hidden" />
|
|
<img src="https://mapledeploy.ca/api/logo/lockup?height=80&dark=true" alt="MapleDeploy" class="hidden h-12 dark:block" />
|
|
</div>
|
|
<div class="w-full bg-white shadow-sm md:mt-0 sm:max-w-md xl:p-0 dark:bg-base ">
|
|
<div class="p-6 space-y-4 md:space-y-6 sm:p-8">
|
|
<form class="flex flex-col gap-2" wire:submit='submit'>
|
|
<x-forms.input id="email" type="email" placeholder="Email" readonly label="Email" />
|
|
<x-forms.input id="password" type="password" placeholder="New Password" label="New Password"
|
|
required />
|
|
<x-forms.input id="password_confirmation" type="password" placeholder="Confirm New Password"
|
|
label="Confirm New Password" required />
|
|
<x-forms.button type="submit">Reset Password</x-forms.button>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</section>
|