diff options
Diffstat (limited to 'templates/profiles')
-rw-r--r-- | templates/profiles/create_profile.html | 13 | ||||
-rw-r--r-- | templates/profiles/profile_list.html | 0 |
2 files changed, 13 insertions, 0 deletions
diff --git a/templates/profiles/create_profile.html b/templates/profiles/create_profile.html new file mode 100644 index 0000000..2eed3e4 --- /dev/null +++ b/templates/profiles/create_profile.html @@ -0,0 +1,13 @@ +{% extends "base.html" %}
+
+{% block content %}
+
+<form method="post">
+{{ form }}
+<input type="submit" />
+</form>
+
+{% if form.errors %}
+ <p class="errornote">Please correct the errors below</p>
+{% endif %}
+{% endblock %}
\ No newline at end of file diff --git a/templates/profiles/profile_list.html b/templates/profiles/profile_list.html new file mode 100644 index 0000000..e69de29 --- /dev/null +++ b/templates/profiles/profile_list.html |