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>
|
2025-08-11 17:34:35 +01:00
|
|
|
<form action="/sync_emails" method="post" style="display:inline-block; margin-left:12px;">
|
|
|
|
|
<button type="submit">Process Emails</button>
|
|
|
|
|
</form>
|
2025-08-12 10:41:47 +01:00
|
|
|
<form action="/process" method="post" style="display:inline-block; margin-left:12px;">
|
|
|
|
|
<button type="submit">Process Alerts</button>
|
|
|
|
|
</form>
|
2025-08-11 14:46:35 +01:00
|
|
|
</nav>
|
|
|
|
|
</div>
|
|
|
|
|
</header>
|
|
|
|
|
<main class="container">
|
|
|
|
|
{% block content %}{% endblock %}
|
|
|
|
|
</main>
|
|
|
|
|
</body>
|
|
|
|
|
</html>
|