11 lines
229 B
HTML
11 lines
229 B
HTML
|
<!DOCTYPE html>
|
||
|
<html>
|
||
|
<body>
|
||
|
{% if error %}
|
||
|
<p>Ton code n'est pas bon !</p>
|
||
|
{% else %}
|
||
|
<p>Bonjour {{ a }}, tu es le père noël secret de {{ b }} !</p>
|
||
|
{% endif %}
|
||
|
</body>
|
||
|
</html>
|