20 lines
660 B
HTML
20 lines
660 B
HTML
<!DOCTYPE html>
|
|
<html lang="fr">
|
|
<head>
|
|
{% block title %}<title>Authentification</title>{% endblock %}
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<link rel="stylesheet" href="">
|
|
<!-- Add additional CSS in static file -->
|
|
{% load static %}
|
|
<link rel="stylesheet" href="{% static 'registration/bootstrap.min.css' %}">
|
|
</head>
|
|
<body style="">
|
|
<div class="container-fluid"
|
|
style="min-height: 100%; min-height: 100vh; display: flex; align-items: center;justify-content: center;">
|
|
<div class="jumbotron">
|
|
{% block content %}{% endblock %}
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html> |