December 17th, 2025 - V.17.1

This commit is contained in:
Flatlogic Bot 2025-12-17 22:54:58 +00:00
parent 3ba72f2dd4
commit 6aab7be89b
3 changed files with 67 additions and 27 deletions

View File

@ -6,34 +6,74 @@
<title>Apply for Founding Partner Access</title> <title>Apply for Founding Partner Access</title>
<script src="https://cdn.tailwindcss.com"></script> <script src="https://cdn.tailwindcss.com"></script>
</head> </head>
<body class="bg-gray-100"> <body class="bg-gray-50 text-gray-800">
<div class="container mx-auto px-4 py-8">
<h1 class="text-3xl font-bold text-center mb-4">Apply for Founding Partner Access</h1> <!-- Header -->
<p class="text-center text-gray-600 mb-8">Limited onboarding so we can deliver high-quality outcomes.</p> <header class="bg-white shadow-sm">
<div class="max-w-md mx-auto bg-white rounded-lg shadow-md p-8"> <div class="container mx-auto px-6 py-4 flex justify-between items-center">
<p class="text-center text-gray-700 mb-4">Demo placeholder. Wire this to your form tool (Make/Zapier/Webhook) later.</p> <a href="index.php" class="text-2xl font-bold text-gray-800">FinMox</a>
<button class="w-full bg-blue-500 hover:bg-blue-600 text-white font-bold py-2 px-4 rounded-md">Submit Application</button> <nav class="space-x-8">
<a href="index.php#why-finmox" class="text-gray-600 hover:text-gray-800">Why FinMox</a>
<a href="index.php#how-it-works" class="text-gray-600 hover:text-gray-800">How It Works</a>
<a href="login.php" class="bg-gray-800 text-white px-4 py-2 rounded-md hover:bg-gray-700">Sign In</a>
<a href="apply.php" class="bg-blue-600 text-white px-4 py-2 rounded-md hover:bg-blue-500">Apply for Access</a>
</nav>
</div> </div>
</header>
<!-- Main Content -->
<main class="container mx-auto px-6 py-12">
<div class="max-w-2xl mx-auto text-center">
<h1 class="text-4xl font-bold tracking-tight text-gray-900 sm:text-5xl">Apply for Founding Partner Access</h1>
<p class="mt-4 text-lg text-gray-600">Limited onboarding so we can deliver high-quality outcomes.</p>
</div> </div>
<footer class="bg-gray-800 text-white py-8 mt-16">
<div class="container mx-auto px-4"> <div class="mt-10 max-w-2xl mx-auto">
<div class="flex justify-between items-center"> <div class="bg-white shadow-lg rounded-lg p-8">
<form action="#" method="POST">
<div class="grid grid-cols-1 md:grid-cols-2 gap-6">
<div> <div>
<p>&copy; 2025 FinMox</p> <label for="first-name" class="block text-sm font-medium text-gray-700">First Name</label>
<p class="text-sm text-gray-400">Security & Privacy</p> <input type="text" name="first-name" id="first-name" class="mt-1 block w-full px-3 py-2 bg-white border border-gray-300 rounded-md shadow-sm placeholder-gray-400 focus:outline-none focus:ring-blue-500 focus:border-blue-500 sm:text-sm">
</div> </div>
<div class="text-sm"> <div>
<label for="last-name" class="block text-sm font-medium text-gray-700">Last Name</label>
<input type="text" name="last-name" id="last-name" class="mt-1 block w-full px-3 py-2 bg-white border border-gray-300 rounded-md shadow-sm placeholder-gray-400 focus:outline-none focus:ring-blue-500 focus:border-blue-500 sm:text-sm">
</div>
<div class="md:col-span-2">
<label for="email" class="block text-sm font-medium text-gray-700">Email</label>
<input type="email" name="email" id="email" class="mt-1 block w-full px-3 py-2 bg-white border border-gray-300 rounded-md shadow-sm placeholder-gray-400 focus:outline-none focus:ring-blue-500 focus:border-blue-500 sm:text-sm">
</div>
<div class="md:col-span-2">
<label for="hiring-process" class="block text-sm font-medium text-gray-700">Tell us about your current hiring process</label>
<textarea name="hiring-process" id="hiring-process" rows="4" class="mt-1 block w-full px-3 py-2 bg-white border border-gray-300 rounded-md shadow-sm placeholder-gray-400 focus:outline-none focus:ring-blue-500 focus:border-blue-500 sm:text-sm"></textarea>
</div>
</div>
<div class="mt-8">
<button type="submit" class="w-full flex justify-center py-3 px-4 border border-transparent rounded-md shadow-sm text-sm font-medium text-white bg-blue-600 hover:bg-blue-700 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-blue-500">
Submit Application
</button>
</div>
</form>
</div>
</div>
</main>
<!-- Footer -->
<footer class="bg-gray-900 text-white mt-16">
<div class="container mx-auto px-6 py-8">
<div class="flex justify-between items-center text-sm">
<span>FinMox &copy; 2025</span>
<div class="space-x-4">
<a href="#" class="hover:text-gray-400">Security & Privacy</a>
</div>
<div class="text-right">
<p>Human-reviewed outputs</p> <p>Human-reviewed outputs</p>
<p>No automated hiring decisions</p> <p>No automated hiring decisions</p>
<p>Built for intentional hiring</p>
</div>
<div>
<a href="apply.php" class="text-white hover:text-gray-300">Apply</a>
<span class="mx-2">&middot;</span>
<a href="login.php" class="text-white hover:text-gray-300">Sign In</a>
</div> </div>
</div> </div>
</div> </div>
</footer> </footer>
</body> </body>
</html> </html>

Binary file not shown.

After

Width:  |  Height:  |  Size: 192 KiB

View File

@ -25,7 +25,7 @@
</nav> </nav>
<div class="flex items-center gap-4"> <div class="flex items-center gap-4">
<a href="login.php" class="text-gray-600 hover:text-black">Sign In</a> <a href="login.php" class="text-gray-600 hover:text-black">Sign In</a>
<a href="register.php" class="bg-black text-white px-5 py-2.5 rounded-lg">Apply for Access</a> <a href="apply.php" class="bg-black text-white px-5 py-2.5 rounded-lg">Apply for Access</a>
</div> </div>
</header> </header>
@ -43,7 +43,7 @@
Built for companies hiring 110 roles/month · 50300 candidates/role · 15 people involved Built for companies hiring 110 roles/month · 50300 candidates/role · 15 people involved
</p> </p>
<div class="mt-10 flex justify-center gap-4"> <div class="mt-10 flex justify-center gap-4">
<a href="register.php" class="bg-black text-white px-8 py-4 rounded-xl font-semibold">Apply for Founding Access</a> <a href="apply.php" class="bg-black text-white px-8 py-4 rounded-xl font-semibold">Apply for Founding Access</a>
<a href="demo.php" class="border px-8 py-4 rounded-xl font-semibold">Book a Demo</a> <a href="demo.php" class="border px-8 py-4 rounded-xl font-semibold">Book a Demo</a>
</div> </div>
<div class="mt-16 px-8"> <div class="mt-16 px-8">
@ -66,7 +66,7 @@
<li class="flex items-center gap-3"><span class="text-green-500"></span> Faster decisions, no headcount</li> <li class="flex items-center gap-3"><span class="text-green-500"></span> Faster decisions, no headcount</li>
</ul> </ul>
<div class="mt-8"> <div class="mt-8">
<a href="register.php" class="bg-black text-white px-6 py-3 rounded-lg">Apply for Access</a> <a href="apply.php" class="bg-black text-white px-6 py-3 rounded-lg">Apply for Access</a>
</div> </div>
</div> </div>
<div> <div>
@ -121,7 +121,7 @@
<h2 class="text-3xl font-bold">Founding Partner Access</h2> <h2 class="text-3xl font-bold">Founding Partner Access</h2>
<p class="mt-4 text-gray-600">Were onboarding a limited number of early customers to shape FinMox HR.</p> <p class="mt-4 text-gray-600">Were onboarding a limited number of early customers to shape FinMox HR.</p>
<div class="mt-8 flex justify-center gap-4"> <div class="mt-8 flex justify-center gap-4">
<a href="register.php" class="bg-black text-white px-8 py-4 rounded-xl font-semibold">Apply for Access</a> <a href="apply.php" class="bg-black text-white px-8 py-4 rounded-xl font-semibold">Apply for Access</a>
<a href="demo.php" class="border px-8 py-4 rounded-xl font-semibold">Book a Demo</a> <a href="demo.php" class="border px-8 py-4 rounded-xl font-semibold">Book a Demo</a>
</div> </div>
<p class="mt-6 text-sm text-gray-500"> <p class="mt-6 text-sm text-gray-500">
@ -137,7 +137,7 @@
<p>FinMox © 2025</p> <p>FinMox © 2025</p>
<div class="mt-4 flex justify-center gap-6"> <div class="mt-4 flex justify-center gap-6">
<a href="#" class="hover:underline">Security & Privacy</a> <a href="#" class="hover:underline">Security & Privacy</a>
<a href="register.php" class="hover:underline">Apply</a> <a href="apply.php" class="hover:underline">Apply</a>
<a href="login.php" class="hover:underline">Sign In</a> <a href="login.php" class="hover:underline">Sign In</a>
</div> </div>
</div> </div>