Stickup/templates/index.html
2020-11-17 12:46:58 -05:00

15 lines
381 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<title>Stickup</title>
<meta name="viewport" content="width=device-width, initial-scale=0.8">
<meta name="description" content="An email management frontend.">
</head>
<body>
<h1>This is a stickup!</h1>
{% for record in email_addresses %}
<div>Your email address is {{ record['email'] }}</div>
{% endfor %}
</body>
</html>