diff --git a/app.py b/app.py
index 1c1a556..102e275 100644
--- a/app.py
+++ b/app.py
@@ -60,5 +60,10 @@ def create_user():
def home():
return render_template('home.html')
+@app.route("/profile")
+@auth_required()
+def profile():
+ return render_template('profile.html')
+
if __name__ == '__main__':
app.run()
\ No newline at end of file
diff --git a/templates/home.html b/templates/home.html
index 606271e..11a7b7d 100644
--- a/templates/home.html
+++ b/templates/home.html
@@ -1,6 +1,6 @@
{% extends "layout.html" %}
{% block title %}
-Home
+Prototyp
{% endblock %}
{% block content %}
diff --git a/templates/layout.html b/templates/layout.html
index 1ee719c..b87b241 100644
--- a/templates/layout.html
+++ b/templates/layout.html
@@ -49,11 +49,11 @@
{% if current_user.is_authenticated %}
- {{ _('Profile') }}
+ {{ _('You') }}
diff --git a/templates/profile.html b/templates/profile.html
new file mode 100644
index 0000000..e2fecea
--- /dev/null
+++ b/templates/profile.html
@@ -0,0 +1,9 @@
+{% extends "layout.html" %}
+{% block title %}
+{{ _('Profile') }}
+{% endblock %}
+{% block content %}
+
+{{ current_user.email }}
+
+{% endblock %}
\ No newline at end of file
diff --git a/translations/de/LC_MESSAGES/messages.mo b/translations/de/LC_MESSAGES/messages.mo
index c3c9772..2d7ef5c 100644
Binary files a/translations/de/LC_MESSAGES/messages.mo and b/translations/de/LC_MESSAGES/messages.mo differ
diff --git a/translations/de/LC_MESSAGES/messages.po b/translations/de/LC_MESSAGES/messages.po
index cc38ae1..d6aa228 100644
--- a/translations/de/LC_MESSAGES/messages.po
+++ b/translations/de/LC_MESSAGES/messages.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PROJECT VERSION\n"
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
-"POT-Creation-Date: 2020-06-07 18:58+0200\n"
+"POT-Creation-Date: 2020-06-07 19:43+0200\n"
"PO-Revision-Date: 2020-06-07 18:51+0200\n"
"Last-Translator: FULL NAME \n"
"Language: de\n"
@@ -23,6 +23,10 @@ msgid "Hi there!"
msgstr "Moin!"
#: templates/layout.html:52
+msgid "You"
+msgstr "Du"
+
+#: templates/layout.html:56 templates/profile.html:3
msgid "Profile"
msgstr "Profil"