2021-05-05 12:26:26 +00:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html lang="en">
|
|
|
|
<head>
|
|
|
|
<meta charset="UTF-8">
|
2021-08-22 17:07:19 +00:00
|
|
|
<title>Portal ŠOLAR</title>
|
2021-05-17 12:33:53 +00:00
|
|
|
<link rel="stylesheet" href="/static/style.css" type="text/css">
|
2021-05-05 12:26:26 +00:00
|
|
|
</head>
|
|
|
|
<body>
|
2021-05-17 12:33:53 +00:00
|
|
|
<div id="main-window">
|
|
|
|
<div id="rect1">
|
|
|
|
<div style="padding: 50px;">
|
|
|
|
<div id="logo-container">
|
|
|
|
<img src="/static/image/logo.svg" alt="logo"/>
|
2021-05-05 12:26:26 +00:00
|
|
|
</div>
|
2021-08-22 17:07:19 +00:00
|
|
|
<h3 id="title" style="font-size: 27px; text-align: left;">Pozabljeno geslo - ŠOLAR</h3>
|
2021-05-05 12:26:26 +00:00
|
|
|
<div>
|
2021-05-17 12:33:53 +00:00
|
|
|
{% with messages = get_flashed_messages() %}
|
|
|
|
{% if messages %}
|
|
|
|
<div>
|
|
|
|
{{ messages[0] }}
|
|
|
|
</div>
|
|
|
|
{% endif %}
|
|
|
|
{% endwith %}
|
2021-08-22 17:07:19 +00:00
|
|
|
<form method="POST" action="/solar/sendresetpass">
|
2021-05-17 12:33:53 +00:00
|
|
|
<div>
|
|
|
|
<div>
|
|
|
|
<input type="email" name="email" placeholder="Email" autofocus="">
|
|
|
|
</div>
|
|
|
|
</div>
|
2021-05-05 12:26:26 +00:00
|
|
|
|
2021-08-22 17:07:19 +00:00
|
|
|
<button class="button-general" style="margin-top: 20px;">Pošlji povezavo za ponastavitev geslo</button>
|
2021-05-17 12:33:53 +00:00
|
|
|
</form>
|
2021-08-22 17:07:19 +00:00
|
|
|
<a href="/solar/register" class="contract-item-button">Registracija</a>
|
2021-05-05 12:26:26 +00:00
|
|
|
</div>
|
2021-05-17 12:33:53 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div id="rect2" class="mock-side">
|
2021-05-05 12:26:26 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</body>
|