source/projects/tentacles/src/python/tentacles/templates/approval_email.html.j2
2023-07-08 18:51:54 -06:00

32 lines
903 B
Django/Jinja

<!DOCTYPE html>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1">
<html lang="en">
<head>
<link rel="stylesheet" href="https://tentacles.tirefireind.us/static/css/style.css" />
</head>
<body>
<nav class="container navbar">
<span class="logo">
<a class="row" href="https://tentacles.tirefireind.us/">
<img src="https://tentacles.tirefireind.us/static/tentacles.svg" alt="Tentacles">
<span class="name color-yellow">Tentacles</span>
</a>
</span>
</nav>
<div class="container content">
<div class="row">
<p>
Hello {{ username }},
</p>
<p>
Your account on Tentacles has been approved! You may now <a href="{{ base_url }}user/login">log in</a> and start printing!
</p>
</div>
</div>
</body>
<footer>
</footer>
</html>