This commit introduces the initial prototype files for the EP inspection tool. The changes include: - Added SHARED_TASK_NOTES.md for documentation - Added inspection-app/ directory containing the main application code - Added prompt.txt for the inspection prompt These files establish the foundation for the inspection tool implementation and provide the necessary structure for the application.
27 lines
No EOL
843 B
HTML
27 lines
No EOL
843 B
HTML
<!doctype html>
|
|
<html>
|
|
<head>
|
|
<title>{% block title %}Inspection App{% endblock %}</title>
|
|
<link rel="stylesheet" href="/static/style.css">
|
|
</head>
|
|
<body>
|
|
<nav>
|
|
<a href="{{ url_for('main.index') }}">Home</a>
|
|
{% if current_user.is_authenticated %}
|
|
<a href="{{ url_for('auth.logout') }}">Logout</a>
|
|
{% else %}
|
|
<a href="{{ url_for('auth.login') }}">Login</a>
|
|
{% endif %}
|
|
</nav>
|
|
<div class="container">
|
|
{% with messages = get_flashed_messages(with_categories=true) %}
|
|
{% if messages %}
|
|
{% for category, msg in messages %}
|
|
<div class="alert {{ category }}">{{ msg }}</div>
|
|
{% endfor %}
|
|
{% endif %}
|
|
{% endwith %}
|
|
{% block content %}{% endblock %}
|
|
</div>
|
|
</body>
|
|
</html> |