Initial commit
This commit is contained in:
33
app/templates/emails/base.html.j2
Normal file
33
app/templates/emails/base.html.j2
Normal file
@@ -0,0 +1,33 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="fr">
|
||||
<head>
|
||||
{% if title is defined and title.strip() %}
|
||||
<title>Mot de passe IUTF - {% block title %}{% endblock %}</title>
|
||||
{% else %}
|
||||
<title>Mot de passe IUTF</title>
|
||||
{% endif %}
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<meta name="format-detection" content="telephone=no">
|
||||
<meta name="format-detection" content="date=no">
|
||||
<meta name="format-detection" content="address=no">
|
||||
<meta name="format-detection" content="email=no">
|
||||
</head>
|
||||
<body>
|
||||
<table role="presentation">
|
||||
<tr>
|
||||
<img src="https://emails-assets.s3.iut-fbleau.fr/logo/upec-iutsf.png" alt="UPEC | IUT Sénart-Fontainebleau" width="200" height="100">
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
<nav>
|
||||
<h1>Mot de passe IUTF</h1>
|
||||
</nav>
|
||||
<section class="content">
|
||||
{% block content %}{% endblock %}
|
||||
</section>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user