portal-oddajanje-solar/templates/solar-forgotpass.html

42 lines
1.4 KiB
HTML
Raw Normal View History

2021-05-05 12:26:26 +00:00
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Portal ŠOLAR</title>
2021-11-17 19:18:28 +00:00
<link rel="stylesheet" href="/static/css/login-styles.css" type="text/css">
2021-11-16 17:45:20 +00:00
<link rel="stylesheet" href="/static/css/utils.css" type="text/css">
2021-05-05 12:26:26 +00:00
</head>
<body>
2021-11-16 17:45:20 +00:00
<div class="background">
<div class="panel login-panel">
<div class="panel-logo">
<img src="/static/image/logo.svg" alt="logo"/>
</div>
<h1 class="m-b-3">Pozabljeno geslo - ŠOLAR</h1>
<div>
<form method="POST" action="../sendresetpass" class="m-b-2">
<div class="input-wrapper">
<img src="../static/image/user.svg" alt="user" class="input-icon"/>
<div class="input-floating-label">
2021-11-17 19:18:28 +00:00
<label>E-mail</label>
2021-11-16 17:45:20 +00:00
<input type="text" name="email">
</div>
2021-11-16 17:45:20 +00:00
</div>
2021-05-05 12:26:26 +00:00
2021-11-16 17:45:20 +00:00
<button class="btn" style="margin-left: 46px;">Pošlji</button>
</form>
{% with messages = get_flashed_messages() %}
{% if messages %}
<div class="alert">
<img src="../static/image/alert.svg" alt="alert"/>
<p>{{ messages[0] }}</p>
2021-05-05 12:26:26 +00:00
</div>
2021-11-16 17:45:20 +00:00
{% endif %}
{% endwith %}
</div>
</div>
2021-05-05 12:26:26 +00:00
</div>
</body>
2021-11-16 17:45:20 +00:00