32 lines
895 B
HTML
32 lines
895 B
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<title>QuoteApp</title>
|
|
<style>
|
|
body { font-family: system-ui, -apple-system, sans-serif; margin: 20px; color:#111; }
|
|
nav a { margin-right: 10px; }
|
|
table { border-collapse: collapse; width: 100%; max-width: 900px; }
|
|
th, td { border: 1px solid #ddd; padding: 8px; }
|
|
th { background: #f5f5f5; text-align: left; }
|
|
input, select, button { padding: 6px; }
|
|
button { cursor: pointer; }
|
|
</style>
|
|
</head>
|
|
<body>
|
|
|
|
<nav>
|
|
<a href="{{ url_for('quotes.dashboard') }}">Dashboard</a> |
|
|
<a href="{{ url_for('clients.list_clients') }}">Clients</a> |
|
|
<a href="{{ url_for('quotes.dashboard') }}">Quotes</a> |
|
|
<a href="{{ url_for('invoices.list_invoices') }}">Invoices</a>
|
|
</nav>
|
|
|
|
<hr>
|
|
|
|
{% block content %}{% endblock %}
|
|
|
|
</body>
|
|
</html>
|