blob: e73ca73c8513e29131208b18841fbc89df9eb9a7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
{% load typogrify_tags %}
<html style="border:none !important;" dir="ltr" lang="en-US">
<head>
<meta charset="utf-8">
<meta http-equiv="x-ua-compatible" content="ie=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet"
href="/media/screenv10.css"
media="screen">
</head>
<body>
<form action="" method="post" target='_parent' class="generic-form flex newsletter-subscribe">{% csrf_token %}
{% for field in form %}
<fieldset>
{{field.label_tag}}
{{field}}
</fieldset>
{% if forloop.last %}<input type="submit" name="post" class="btn" value="Subscribe" />{%endif%}
</form>
<small class="alert">{% if field.errors %}{{field.errors}}{% endif %}</small>
{%endfor%}
</body>
</html>
|