39 lines
1.3 KiB
HTML
39 lines
1.3 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>Portal ŠOLAR</title>
|
|
<link rel="stylesheet" href="/static/style.css" type="text/css">
|
|
</head>
|
|
<body>
|
|
<div id="main-window">
|
|
<div id="rect1">
|
|
<div style="padding: 50px;">
|
|
<div id="logo-container">
|
|
<img src="/static/image/logo.svg" alt="logo"/>
|
|
</div>
|
|
<h3 id="title" style="font-size: 27px; text-align: left;">Ponastavitev gesla - ŠOLAR</h3>
|
|
<div>
|
|
{% with messages = get_flashed_messages() %}
|
|
{% if messages %}
|
|
<div>
|
|
{{ messages[0] }}
|
|
</div>
|
|
{% endif %}
|
|
{% endwith %}
|
|
<form method="POST" action="">
|
|
<div>
|
|
<div>
|
|
<input type="password" name="new_password" placeholder="Novo geslo">
|
|
</div>
|
|
</div>
|
|
<button class="button-general" style="margin-top: 20px;">PONASTAVI</button>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div id="rect2" class="mock-side">
|
|
</div>
|
|
</div>
|
|
</body>
|