Replace Coolify branding with MapleDeploy throughout the UI: logos, favicon, fonts (Overlock 900), color scheme, help links, and page titles. Remove GitHub Actions workflows and add Forgejo CI build workflow. Strip cloud-only features (subscription prompts, sponsor links, server creation cloud options).
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>
|