- 134-tool registry with programmatic SEO (unique titles/H1/descriptions, JSON-LD graphs, sitemap index, canonical 301 enforcement via required filter) - DB-backed job queue (SKIP LOCKED) with drivers: Ffmpeg, Images (GD), Pdf (qpdf/gs/poppler), Youtube (thumbnails), Qr (server-side PNG) - Security: SSRF guard, MIME validation, rate limits, API-key auth, bcrypt admin login, security headers - Admin panel: dashboard, tools/categories/guides CRUD, SEO audit, analytics, job inspector with retry, system health, feature flags - Docker deployment (nginx + web/api FPM pools + scalable workers), PHPUnit suite (19 tests / 1139 assertions), PWA manifest + service worker
11 lines
682 B
PHP
11 lines
682 B
PHP
<div class="wrap" style="max-width:460px;margin-top:4rem">
|
|
<h1 style="font-size:1.6rem;letter-spacing:-.02em">Admin sign-in</h1>
|
|
<?php if (! empty($error)): ?><p class="notice error"><?= esc($error) ?></p><?php endif ?>
|
|
<form method="post" action="/admin/login" class="tool-panel" style="padding:1.4rem">
|
|
<?= csrf_field() ?>
|
|
<label for="password" style="display:block;font-size:.85rem;font-weight:650;margin-bottom:.35rem">Password</label>
|
|
<input type="password" id="password" name="password" required autofocus style="width:100%" class="input-lg">
|
|
<button class="btn-primary" type="submit" style="margin-top:1rem;width:100%">Sign in</button>
|
|
</form>
|
|
</div>
|