Stickup/templates/index.html

15 lines
381 B
HTML
Raw Normal View History

2020-11-11 13:27:18 -05:00
<!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>
2020-11-17 12:46:58 -05:00
{% for record in email_addresses %}
<div>Your email address is {{ record['email'] }}</div>
{% endfor %}
2020-11-11 13:27:18 -05:00
</body>
</html>