File: about.html

package info (click to toggle)
python-django-otp 1.6.1-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 756 kB
  • sloc: python: 3,221; makefile: 145; sh: 6
file content (18 lines) | stat: -rw-r--r-- 582 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{% extends "root.html" %}

{% block main %}
<h1 class="display-2 mb-4">About</h1>

<p>
This is a simple demo app for development and testing of django-otp. The home
page just displays your current authentication status. The navbar contains
links to views with different combinations of decorators to force
authentication and/or verification. All views redirect to the home page, where
you can see the result.
</p>

<p>
There are also links to the admin site (with and without OTP required), plus
links directly to the login page (with out without OTP required).
</p>
{% endblock %}