{% extends "_base.html" %} {% load future i18n %} {% block title %}{% trans "django-two-factor-auth – Demo Application" %}{% endblock %} {% block nav_home %}active{% endblock %} {% block content %}

{% blocktrans %}Improve Your Security your users will thank you{% endblocktrans %}

{% blocktrans %}Welcome to the example app of django-two-factor-auth. Use this example to get an understanding of what the app can do for you.{% endblocktrans %}

{% trans "Please verify your settings" %}

{% blocktrans %}Have you provided your Twilio settings in the settings_private.py file? By doing so, the example app will be able to call and text you to verify your authentication tokens. Otherwise, the tokens will be shown on the screen.{% endblocktrans %}

{% 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 %}Start by registering an account.{% endblocktrans %}
  2. {% blocktrans %}Login to your account. {% endblocktrans %}
  3. {% blocktrans %}Enable two-factor authentication.{% endblocktrans %}
  4. {% blocktrans %}Then, logout and login once more to your account to see two-factor authentication at work.{% endblocktrans %}
  5. {% blocktrans %}At last, you've gained access to the secret page! :-){% endblocktrans %}
{% endblock %}