December 17th, 2025 - V.17.1
This commit is contained in:
parent
3ba72f2dd4
commit
6aab7be89b
84
apply.php
84
apply.php
@ -6,34 +6,74 @@
|
||||
<title>Apply for Founding Partner Access</title>
|
||||
<script src="https://cdn.tailwindcss.com"></script>
|
||||
</head>
|
||||
<body class="bg-gray-100">
|
||||
<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>
|
||||
<p class="text-center text-gray-600 mb-8">Limited onboarding so we can deliver high-quality outcomes.</p>
|
||||
<div class="max-w-md mx-auto bg-white rounded-lg shadow-md p-8">
|
||||
<p class="text-center text-gray-700 mb-4">Demo placeholder. Wire this to your form tool (Make/Zapier/Webhook) later.</p>
|
||||
<button class="w-full bg-blue-500 hover:bg-blue-600 text-white font-bold py-2 px-4 rounded-md">Submit Application</button>
|
||||
<body class="bg-gray-50 text-gray-800">
|
||||
|
||||
<!-- Header -->
|
||||
<header class="bg-white shadow-sm">
|
||||
<div class="container mx-auto px-6 py-4 flex justify-between items-center">
|
||||
<a href="index.php" class="text-2xl font-bold text-gray-800">FinMox</a>
|
||||
<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>
|
||||
<footer class="bg-gray-800 text-white py-8 mt-16">
|
||||
<div class="container mx-auto px-4">
|
||||
<div class="flex justify-between items-center">
|
||||
<div>
|
||||
<p>© 2025 FinMox</p>
|
||||
<p class="text-sm text-gray-400">Security & Privacy</p>
|
||||
</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 class="mt-10 max-w-2xl mx-auto">
|
||||
<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>
|
||||
<label for="first-name" class="block text-sm font-medium text-gray-700">First Name</label>
|
||||
<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>
|
||||
<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 © 2025</span>
|
||||
<div class="space-x-4">
|
||||
<a href="#" class="hover:text-gray-400">Security & Privacy</a>
|
||||
</div>
|
||||
<div class="text-sm">
|
||||
<div class="text-right">
|
||||
<p>Human-reviewed outputs</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">·</span>
|
||||
<a href="login.php" class="text-white hover:text-gray-300">Sign In</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</footer>
|
||||
|
||||
</body>
|
||||
</html>
|
||||
</html>
|
||||
|
||||
BIN
assets/pasted-20251217-225220-1f0cef14.png
Normal file
BIN
assets/pasted-20251217-225220-1f0cef14.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 192 KiB |
10
index.php
10
index.php
@ -25,7 +25,7 @@
|
||||
</nav>
|
||||
<div class="flex items-center gap-4">
|
||||
<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>
|
||||
</header>
|
||||
|
||||
@ -43,7 +43,7 @@
|
||||
Built for companies hiring 1–10 roles/month · 50–300 candidates/role · 1–5 people involved
|
||||
</p>
|
||||
<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>
|
||||
</div>
|
||||
<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>
|
||||
</ul>
|
||||
<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>
|
||||
@ -121,7 +121,7 @@
|
||||
<h2 class="text-3xl font-bold">Founding Partner Access</h2>
|
||||
<p class="mt-4 text-gray-600">We’re onboarding a limited number of early customers to shape FinMox HR.</p>
|
||||
<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>
|
||||
</div>
|
||||
<p class="mt-6 text-sm text-gray-500">
|
||||
@ -137,7 +137,7 @@
|
||||
<p>FinMox © 2025</p>
|
||||
<div class="mt-4 flex justify-center gap-6">
|
||||
<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>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user