diff --git a/templates/profile.html b/templates/profile.html
new file mode 100644
index 0000000..71c6ede
--- /dev/null
+++ b/templates/profile.html
@@ -0,0 +1,33 @@
+{% extends "_base.html" %}
+{% load i18n %}
+
+{% block title %}Profile{% endblock %}
+{% block nav_profile %}active{% endblock %}
+
+{% block content %}
+
All your labels in one place.
Lbelbase
+
Labelbase is a
+
+
+
+ {% url 'registration' as reg_url %}
+ {% url 'two_factor:login' as login_url %}
+ {% url 'two_factor:setup' as setup_url %}
+ {% url 'logout' as logout_url %}
+ {% url 'secret' as secret_url %}
+
+ {% trans "Next steps:" %}
+
+ - {% blocktrans trimmed %}Start by registering an
+ account.{% endblocktrans %}
+ - {% blocktrans trimmed %}Login to your account.
+ {% endblocktrans %}
+ - {% blocktrans trimmed %}Enable two-factor
+ authentication.{% endblocktrans %}
+ - {% blocktrans trimmed %}Then, logout and
+ login once more to your account to see
+ two-factor authentication at work.{% endblocktrans %}
+ - {% blocktrans trimmed %}At last, you've gained access to the
+ secret page! :-){% endblocktrans %}
+
+{% endblock %}