Initial cleanup of the codebase
Change-Id: Idbc92ea3c2d7ee4d4807d1d83ceee9a299b9a9f7
diff --git a/app/templates/signup.html b/app/templates/signup.html
new file mode 100644
index 0000000..5dd47c1
--- /dev/null
+++ b/app/templates/signup.html
@@ -0,0 +1,15 @@
+{% extends "base.html" %}
+{% from 'macros.html' import render_form %}
+
+{% block content %}
+<h2>Sign up</h2>
+{% include 'flash_messages.html' %}
+
+{{ render_form(form, action_url=url_for('signup'), method='POST', btn_class='btn btn-primary',
+ action_text=_('sign up')) }}
+<!--
+<form action="{{ url_for('signup') }}" method="POST" class="form-horizontal" role="form">
+ {% include 'forms.html' %}
+</form>
+-->
+{% endblock %}
\ No newline at end of file