Files
paul 35d70a7746 feat: add ReconConfig API and UI for managing configurations
- Added a new API endpoint for managing ReconConfigs at /api/configs, including GET, POST, PUT, and a test URL feature.
- Implemented a new configuration editor UI at /configs for creating and editing ReconConfigs.
- Introduced a new configs list page at /configs to display existing configurations with options to edit.
- Updated base HTML template to include a link to the new configs page.
- Created stub configuration and authentication models for workspace development.
- Added a stub configuration module to handle database configuration without a real database.
2026-05-26 21:58:04 +12:00

37 lines
1.1 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Recon Ranger</title>
<link id="favicon" rel="icon" type="image/x-icon" href="/static/images/favicon.ico">
<link rel="stylesheet" href="/static/css/styles.css">
</head>
<body>
<header>
<nav>
<div class="menu">
<div class="logo">
<a href="/">Recon Ranger</a>
</div>
<ul>
<li><a href="/">Home</a></li>
<li><a href="/results">Results</a></li>
<li><a href="/configs">Configs</a></li>
<li><a href="/api/docs/">API</a></li>
<li><a href="mailto:someone@example.com">Contact</a></li>
</ul>
</div>
</nav>
</header>
<main>
{% block content %}{% endblock %}
</main>
<footer>
{% block footer %}© 2026 ASB Financial Crime{% endblock %}
</footer>
</body>
</html>