Initial cleanup of the codebase
Change-Id: Idbc92ea3c2d7ee4d4807d1d83ceee9a299b9a9f7
diff --git a/app/templates/profile.html b/app/templates/profile.html
new file mode 100644
index 0000000..871047c
--- /dev/null
+++ b/app/templates/profile.html
@@ -0,0 +1,24 @@
+{% extends "base.html" %}
+{% block head %}
+<script type="text/javascript">
+$(document).ready(function(){
+ $('[data-toggle="tooltip"]').tooltip({
+ placement : 'top',
+ float : 'left'
+ });
+});
+
+</script>
+{% endblock %}
+{% block content %}
+<h1>User information</h1>
+{% include 'flash_messages.html' %}
+
+{% if message %}
+<p class="success">{{ message }}</p>
+{% endif %}
+
+{% from 'macros.html' import render_form %}
+{{ render_form(form, action_url=url_for('profile'), method='POST', action_text=_('update')) }}
+
+{% endblock %}
\ No newline at end of file