diff options
author | luxagraf <sng@luxagraf.net> | 2020-11-11 16:01:02 -0500 |
---|---|---|
committer | luxagraf <sng@luxagraf.net> | 2020-11-11 16:01:02 -0500 |
commit | 8a080bb7bd39036d89987a662e2fa03ccd321529 (patch) | |
tree | 33c2ebe6b99a63effc1aab17e83189cad5ce3884 /app | |
parent | 6030bf3569157539d7b292efe1eea7287d842a14 (diff) |
added stylesheet to form
Diffstat (limited to 'app')
-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> |