the beginning of the idiots

This commit is contained in:
2025-10-24 14:51:13 -05:00
parent 0b377030c6
commit cb06217ef7
123 changed files with 10279 additions and 0 deletions

229
qwen/php/public/index.html Normal file
View File

@@ -0,0 +1,229 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>MerchantsOfHope.org - Recruiting Platform</title>
<style>
/* Basic accessibility styles */
:root {
--primary-color: #0072ce;
--secondary-color: #f5f5f5;
--text-color: #333;
--text-light: #fff;
--border-color: #ccc;
--focus-color: #0056b3;
}
body {
font-family: Arial, sans-serif; /* Sans-serif for better readability */
line-height: 1.6;
color: var(--text-color);
margin: 0;
padding: 0;
background-color: #fff;
}
.container {
max-width: 1200px;
margin: 0 auto;
padding: 0 20px;
}
header {
background-color: var(--primary-color);
color: var(--text-light);
padding: 1rem 0;
}
nav ul {
list-style: none;
padding: 0;
margin: 0;
display: flex;
justify-content: space-between;
}
nav li {
display: inline-block;
}
nav a {
color: var(--text-light);
text-decoration: none;
padding: 10px 15px;
display: block;
border-radius: 4px;
}
nav a:hover,
nav a:focus {
background-color: var(--focus-color);
outline: 2px solid var(--text-light);
outline-offset: 2px;
}
main {
padding: 2rem 0;
}
h1, h2, h3 {
font-weight: bold;
}
.job-card {
border: 1px solid var(--border-color);
border-radius: 8px;
padding: 1rem;
margin-bottom: 1rem;
background-color: var(--secondary-color);
}
.btn {
display: inline-block;
padding: 10px 20px;
background-color: var(--primary-color);
color: white;
text-decoration: none;
border-radius: 4px;
border: none;
cursor: pointer;
font-size: 1rem;
}
.btn:focus {
outline: 2px solid var(--focus-color);
outline-offset: 2px;
}
.btn:hover {
background-color: var(--focus-color);
}
form {
max-width: 600px;
margin: 2rem 0;
}
label {
display: block;
margin-bottom: 0.5rem;
font-weight: bold;
}
input, textarea, select {
width: 100%;
padding: 10px;
margin-bottom: 1rem;
border: 1px solid var(--border-color);
border-radius: 4px;
font-size: 1rem;
}
input:focus, textarea:focus, select:focus {
outline: 2px solid var(--focus-color);
outline-offset: 2px;
}
footer {
background-color: #333;
color: white;
padding: 2rem 0;
margin-top: 2rem;
}
.skip-link {
position: absolute;
top: -40px;
left: 6px;
background: var(--primary-color);
color: white;
padding: 8px;
border-radius: 4px;
z-index: 1000;
}
.skip-link:focus {
top: 6px;
}
</style>
</head>
<body>
<a href="#main-content" class="skip-link">Skip to main content</a>
<header>
<div class="container">
<h1>MerchantsOfHope.org</h1>
<p>Connecting talent with opportunity</p>
</div>
</header>
<nav>
<div class="container">
<ul>
<li><a href="/">Home</a></li>
<li><a href="/positions">Browse Jobs</a></li>
<li><a href="/auth/login">Login</a></li>
<li><a href="/auth/register">Register</a></li>
</ul>
</div>
</nav>
<main id="main-content">
<div class="container">
<h2>Find Your Next Opportunity</h2>
<p>Explore thousands of job listings from top companies in your field.</p>
<form action="/positions" method="GET">
<div>
<label for="search">Search Jobs:</label>
<input type="text" id="search" name="search" placeholder="Job title, keywords, or company">
</div>
<div>
<label for="location">Location:</label>
<input type="text" id="location" name="location" placeholder="City, state, or remote">
</div>
<div>
<label for="type">Job Type:</label>
<select id="type" name="type">
<option value="">All Types</option>
<option value="full_time">Full Time</option>
<option value="part_time">Part Time</option>
<option value="contract">Contract</option>
<option value="internship">Internship</option>
</select>
</div>
<button type="submit" class="btn">Search Jobs</button>
</form>
<h3>Featured Positions</h3>
<div id="job-listings">
<!-- Job listings would be populated here by JavaScript or server-side rendering -->
<div class="job-card">
<h4>Software Engineer</h4>
<p>TSYS Group • New York, NY</p>
<p>Full-time position developing cutting-edge financial technology solutions.</p>
<a href="#" class="btn">View Details</a>
</div>
<div class="job-card">
<h4>UX Designer</h4>
<p>TSYS Group • Remote</p>
<p>Design intuitive user experiences for our merchant services platform.</p>
<a href="#" class="btn">View Details</a>
</div>
</div>
</div>
</main>
<footer>
<div class="container">
<p>&copy; 2025 MerchantsOfHope.org. All rights reserved.</p>
<p>Committed to accessibility and equal opportunity employment.</p>
</div>
</footer>
</body>
</html>

16
qwen/php/public/index.php Normal file
View File

@@ -0,0 +1,16 @@
<?php
// public/index.php
require_once __DIR__ . '/../vendor/autoload.php';
use App\Application;
use Dotenv\Dotenv;
// Load environment variables
$dotenv = Dotenv::createImmutable(__DIR__ . '/../');
$dotenv->load();
// Initialize the application
$app = new Application();
// Run the application
$app->run();