From aa7eb95bf4838b6d6d89a61808cffd8e7e34bbb8 Mon Sep 17 00:00:00 2001 From: Xavier Fiechter Date: Fri, 3 Feb 2023 14:10:01 +0100 Subject: [PATCH] . --- templates/profile.html | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 templates/profile.html 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:" %}

+
    +
  1. {% blocktrans trimmed %}Start by registering an + account.{% endblocktrans %}
  2. +
  3. {% blocktrans trimmed %}Login to your account. + {% endblocktrans %}
  4. +
  5. {% blocktrans trimmed %}Enable two-factor + authentication.{% endblocktrans %}
  6. +
  7. {% blocktrans trimmed %}Then, logout and + login once more to your account to see + two-factor authentication at work.{% endblocktrans %}
  8. +
  9. {% blocktrans trimmed %}At last, you've gained access to the + secret page! :-){% endblocktrans %}
  10. +
+{% endblock %}