diff options
-rw-r--r-- | app/lttr/templates/lttr/friends_subscribe.html | 13 |
1 files changed, 12 insertions, 1 deletions
diff --git a/app/lttr/templates/lttr/friends_subscribe.html b/app/lttr/templates/lttr/friends_subscribe.html index 07cff24..767bf02 100644 --- a/app/lttr/templates/lttr/friends_subscribe.html +++ b/app/lttr/templates/lttr/friends_subscribe.html @@ -1,5 +1,14 @@ {% load typogrify_tags %} - +<html 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/screenv9.css" + media="screen"> +</head> +<body> <form action="" method="post" class="generic-form flex newsletter-subscribe">{% csrf_token %} {% for field in form %} <fieldset> @@ -10,3 +19,5 @@ </form> <small class="alert">{% if field.errors %}{{field.errors}}{% endif %}</small> {%endfor%} +</body> +</html> |