d50c1c5bba
- Added .env.example for environment variable configuration. - Created app initialization files and core settings management. - Implemented API routers for reporting and transaction endpoints. - Developed transaction management service with CRUD operations. - Integrated Azure OAuth for user authentication. - Designed dashboard view with transaction filtering and display. - Added Swagger UI documentation with custom dark theme. - Created static and template files for frontend styling and layout.
40 lines
1.2 KiB
HTML
40 lines
1.2 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="/api/docs">API</a></li>
|
|
<li><a href="mailto:someone@example.com">Contact</a></li>
|
|
{% if request.session.get('user') %}
|
|
<li><a href="/logout">Logout</a></li>
|
|
{% else %}
|
|
<li><a href="/login">Login</a></li>
|
|
{% endif %}
|
|
</ul>
|
|
</div>
|
|
</nav>
|
|
</header>
|
|
<main>
|
|
{% block content %}{% endblock %}
|
|
</main>
|
|
<footer>
|
|
{% block footer %}© 2026 ASB Financial Crime{% endblock %}
|
|
</footer>
|
|
</body>
|
|
|
|
</html> |