Initial cleanup of the codebase

Change-Id: Idbc92ea3c2d7ee4d4807d1d83ceee9a299b9a9f7
diff --git a/service/app/templates/signup.html b/service/app/templates/signup.html
new file mode 100644
index 0000000..cfd0614
--- /dev/null
+++ b/service/app/templates/signup.html
@@ -0,0 +1,10 @@
+{% 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', disabled= error, btn_class='btn btn-primary',
+action_text=_('sign up')) }}
+{% endblock %}
\ No newline at end of file