Replace all Coolify branding with MapleDeploy across 111 files: - Logo, favicon, and color palette (Canadian red scale, stone greys) - Fonts: Overlock for headings, Inter for body (self-hosted woff2/ttf) - All ~70 page titles updated to "| MapleDeploy" - Auth pages, navbar, footer, email templates, settings, boarding flow - Remove Hetzner provider, Coolify Cloud upsells, sponsorship popups - Disable telemetry (Sentry DSN null, undead.coolify.io ping disabled) - Point auto-update to MapleDeploy Forgejo registry image - Redirect help/support links to mapledeploy.ca/contact - Add AGPL source code link to Forgejo repo in navbar - OpenAPI docs rebranded to MapleDeploy
19 lines
1.1 KiB
PHP
19 lines
1.1 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">
|
|
<a class="flex items-center mb-6 text-5xl font-extrabold tracking-tight text-gray-900 dark:text-white" style="font-family: 'Overlock', sans-serif;">
|
|
MapleDeploy
|
|
</a>
|
|
<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>
|