diff --git a/app.py b/app.py index 1059ff1..f5b7f88 100644 --- a/app.py +++ b/app.py @@ -1073,6 +1073,10 @@ def upload_file(): ''' +@app.route("/onboarding") +def onboarding_page(): + return render_template("onboarding.html") + @app.route('/follow') def follow(): following_id = str(request.args.get("id")) diff --git a/templates/onboarding.html b/templates/onboarding.html new file mode 100644 index 0000000..ce33eb9 --- /dev/null +++ b/templates/onboarding.html @@ -0,0 +1,87 @@ + + + + + + Onboarding Page + + + + +
+

Welcome!

+

Select topics you like:

+
+ + + + + +
+ + +
+ + + diff --git a/templates/profile.html b/templates/profile.html index cce7ba6..5307d58 100644 --- a/templates/profile.html +++ b/templates/profile.html @@ -539,7 +539,8 @@ {% if user.first_name %}
{{ user.first_name }} {{ user.last_name }}

{% endif %} -
{{ user.username }}
+
+
[ADMIN] {{ user.username }}
{% if session.user %} {% if session.user.id == user_id %}