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-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-08-22 17:07:19 +00:00
|
|
|
|
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>
|
|
|
|
<h2 class="text-center">Portal za oddajanje besedil</h2>
|
|
|
|
<div class="line"></div>
|
|
|
|
<h1 class="text-center">Korpus ŠOLAR</h1>
|
2021-09-02 12:40:54 +00:00
|
|
|
|
2021-11-16 17:45:20 +00:00
|
|
|
<div class="text-center m-b-3"><em>Zbiranje besedil za korpus Šolar poteka po naslednjem postopku, ki prinaša tudi točke za napredovanje.</em></div>
|
2021-09-02 12:40:54 +00:00
|
|
|
|
2021-11-16 17:45:20 +00:00
|
|
|
<h1 class="m-b-3">Registracija</h1>
|
|
|
|
<div>
|
|
|
|
<form method="POST" action="../register" 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>Ime in priimek</label>
|
2021-11-16 17:45:20 +00:00
|
|
|
<input type="name" name="name" autofocus="">
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<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>Email</label>
|
2021-11-16 17:45:20 +00:00
|
|
|
<input type="email" name="email">
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="input-wrapper">
|
|
|
|
<img src="../static/image/password.svg" alt="user" class="input-icon"/>
|
|
|
|
<div class="input-floating-label">
|
2021-11-17 19:18:28 +00:00
|
|
|
<label>Geslo</label>
|
2021-11-16 17:45:20 +00:00
|
|
|
<input type="password" name="password">
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<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>Naziv institucije</label>
|
2021-11-16 17:45:20 +00:00
|
|
|
<input type="institution" name="institution">
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="input-wrapper">
|
|
|
|
<img src="../static/image/password.svg" alt="user" class="input-icon"/>
|
|
|
|
<div class="input-floating-label">
|
2021-11-17 19:18:28 +00:00
|
|
|
<label>Vloga v instituciji</label>
|
2021-09-02 12:40:54 +00:00
|
|
|
<select id="role" name="role" >
|
|
|
|
<option value="coordinator">Koordinator/-ka</option>
|
|
|
|
<option value="mentor">Mentor/-ica</option>
|
|
|
|
<option value="other">Druga vloga</option>
|
|
|
|
</select>
|
2021-11-16 17:45:20 +00:00
|
|
|
</div>
|
2021-05-05 12:26:26 +00:00
|
|
|
</div>
|
2021-11-16 17:45:20 +00:00
|
|
|
<button class="btn" style="margin-left: 46px;">REGISTRACIJA</button>
|
|
|
|
</form>
|
2021-05-17 12:33:53 +00:00
|
|
|
</div>
|
2021-11-16 17:45:20 +00:00
|
|
|
{% 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 %}
|
|
|
|
|
|
|
|
|
2021-05-05 12:26:26 +00:00
|
|
|
</div>
|
2021-11-16 17:45:20 +00:00
|
|
|
</div>
|
|
|
|
|
2021-05-05 12:26:26 +00:00
|
|
|
</body>
|