init
This commit is contained in:
20
backend-django/templates/registration/base_generic.html
Normal file
20
backend-django/templates/registration/base_generic.html
Normal file
@@ -0,0 +1,20 @@
|
||||
<!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>
|
||||
Reference in New Issue
Block a user