hns-email/templates/notifications.html

34 lines
1.2 KiB
HTML
Raw Normal View History

2024-10-04 20:43:58 +10:00
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Notifications | HNS Login Email</title>
<link rel="icon" href="/assets/img/favicon.png" type="image/png">
<link rel="stylesheet" href="/assets/css/index.css">
</head>
<body>
<header style="display: inline;">
2024-10-04 21:11:21 +10:00
<img src="/favicon.png" style="width:50px;height:50px;">
<h1>HNS Email</h1> <span style="float:right">{{email}} | <a href="/inbox">Inbox</a> | <a
2024-10-04 20:43:58 +10:00
href="/logout">Logout</a></span>
</header>
<div class="centre">
<form action="/notifications" method="post">
<!-- Discord webhook url -->
<label for="webhook">Discord Webhook URL</label>
<input type="text" name="webhook" placeholder="https://discord.com/api/webhooks/..." value="{{webhook}}">
<!-- Email -->
<br>
<label for="email">Email Notification</label>
<input type="email" name="email" placeholder="example@example.com" value="{{email_alert}}">
<br>
<input class="button" type="submit" value="Submit">
</form>
</div>
</body>
</html>