mirror of
https://git.v0id.ovh/n3wt-innov/n3wt-school.git
synced 2026-01-28 15:33:22 +00:00
37 lines
1.3 KiB
HTML
37 lines
1.3 KiB
HTML
{% load static %}
|
|
|
|
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<link rel="stylesheet" href="{% static 'css/main.css' %}">
|
|
<title>Monteschool</title>
|
|
</head>
|
|
<body>
|
|
<div class="container negative full-size">
|
|
<div class="logo-circular centered">
|
|
<img src="{% static 'img/logo_min.svg' %}" alt="">
|
|
</div>
|
|
<h1 class="login-heading"> Réinitialiser Mot de Passe</h1>
|
|
<form class="negative centered login-form" method="post">
|
|
{% csrf_token %}
|
|
<div class="input-group">
|
|
<label for="username">Identifiant</label>
|
|
<div class="input-wrapper">
|
|
<span class="icon-ctn">
|
|
<i class="icon user"></i>
|
|
</span>
|
|
<input type="text" id="username" placeholder="Identifiant" name="email">
|
|
</div>
|
|
</div>
|
|
<p style="color:#FF0000">{{ message }}</p>
|
|
<div class="form-group-submit negative">
|
|
<button href="" class="btn primary" type="submit" name="reinit">Réinitialiser</button>
|
|
<br>
|
|
<button href="" class="btn" type="submit" name="cancel">Annuler</button>
|
|
</div>
|
|
</form>
|
|
</div>
|
|
</body>
|
|
</html> |