Files
email_alerts_v2/templates/base.html
T

27 lines
677 B
HTML
Raw Normal View History

2025-08-11 14:46:35 +01:00
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Email Alerts</title>
<link rel="stylesheet" href="/static/styles.css" />
</head>
<body>
<header>
<div class="inner">
<h1>Email Alerts</h1>
<nav>
<a href="/">Threads</a>
<a href="/config">Config</a>
<form action="/sync_emails" method="post" style="display:inline-block; margin-left:12px;">
<button type="submit">Process Emails</button>
</form>
2025-08-11 14:46:35 +01:00
</nav>
</div>
</header>
<main class="container">
{% block content %}{% endblock %}
</main>
</body>
</html>