Files
django-mfa2/example/example/templates/home.html
2021-05-28 16:38:27 +03:00

22 lines
599 B
HTML

{% extends 'base.html' %}
{% load static %}
{% block content %}
<div class="container-fluid">
<!-- Breadcrumbs-->
<ol class="breadcrumb">
<li class="breadcrumb-item">
<a href="index.html">Dashboard</a>
</li>
<li class="breadcrumb-item active">Blank Page</li>
</ol>
<!-- Page Content -->
{% if registered %}
<div class="alert alert-success">Registered Successfully</div>
{% endif %}
<h1>Welcome {{ request.user.username }}!</h1>
<hr>
</div>
{% endblock %}