Files
django-mfa2/example/example/templates/home.html
Mohamed El-Kalioby b9f06f8d9c Adding Example app
2019-06-20 21:13:05 +03:00

19 lines
470 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 -->
<h1>Welcome {{ request.user.username }}!</h1>
<hr>
</div>
{% endblock %}