2024-04-12 07:26:07 +00:00
|
|
|
<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">
|
feat(branding): apply MapleDeploy branding to Coolify fork
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
2026-02-08 22:34:51 +00:00
|
|
|
<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
|
2024-04-12 07:26:07 +00:00
|
|
|
</a>
|
2025-05-14 10:43:23 +00:00
|
|
|
<div class="w-full bg-white shadow-sm md:mt-0 sm:max-w-md xl:p-0 dark:bg-base ">
|
2024-04-12 07:26:07 +00:00
|
|
|
<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>
|
2023-08-15 12:11:38 +00:00
|
|
|
</div>
|
|
|
|
|
</div>
|
2024-04-12 07:26:07 +00:00
|
|
|
</section>
|