Browse Source

Add initial templates

pull/1/head
Hidden Z 14 years ago
parent
commit
3a22a9e2bf
  1. 5
      web/templates/base.html
  2. 9
      web/templates/postkey.html

5
web/templates/base.html

@ -0,0 +1,5 @@ @@ -0,0 +1,5 @@
<html><head></head><body>
{% block content %}
{% endblock %}
</body></html>

9
web/templates/postkey.html

@ -0,0 +1,9 @@ @@ -0,0 +1,9 @@
{% extends "base.html" %}
{% block content %}
<form action="/postkey/" method="post">
{% csrf_token %}
{{ form.as_p }}
<input type="submit" value="Submit" />
</form>
{% endblock %}
Loading…
Cancel
Save