32 lines
No EOL
1.1 KiB
Twig
32 lines
No EOL
1.1 KiB
Twig
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Document</title>
|
|
</head>
|
|
<body>
|
|
{% if mail %}
|
|
<div id="mail" style="padding: 1rem; border: 2px solid black; background-color: lightsteelblue; color: stellblue">{{mail | raw}}</div>
|
|
<br>
|
|
{% endif %}
|
|
{% if message %}
|
|
<div id="message" style="padding: 1rem; border: 2px solid black; background-color: green; color: white">{{message}}</div>
|
|
<br>
|
|
{% endif %}
|
|
{% if error %}
|
|
<div id="error" style="padding: 1rem; border: 2px solid black; background-color: red; color: white">{{error}}</div>
|
|
<br>
|
|
{% endif %}
|
|
<h4>Password recovery page</h4>
|
|
<form action="/recover-password" method="post">
|
|
<input type="text" name="login" placeholder="login">
|
|
<input type="submit" name="submit" value="submit">
|
|
</form>
|
|
<hr>
|
|
<a href="/register">Registration</a>
|
|
<br>
|
|
<a href="/login">Login</a>
|
|
</body>
|
|
</html> |