69 lines
2.7 KiB
HTML
69 lines
2.7 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>
|
|
<h1 id="title">Portal za oddajanje besedil</h1>
|
|
<h2 id="subtitle">Korpus Šolar</h2>
|
|
|
|
<div class="form-text"><em>Zbiranje besedil za korpus Šolar poteka po naslednjem postopku, ki prinaša tudi točke za napredovanje.</em></div>
|
|
|
|
<h3 id="title" style="font-size: 27px; text-align: left;">Registracija</h3>
|
|
<div>
|
|
{% with messages = get_flashed_messages() %}
|
|
{% if messages %}
|
|
<div>
|
|
{{ messages[0] }}
|
|
</div>
|
|
{% endif %}
|
|
{% endwith %}
|
|
<form method="POST" action="/solar/register">
|
|
<div>
|
|
<div>
|
|
<input type="name" name="name" placeholder="Ime in priimek" autofocus="">
|
|
</div>
|
|
</div>
|
|
|
|
<div>
|
|
<div>
|
|
<input type="email" name="email" placeholder="Email" autofocus="">
|
|
</div>
|
|
</div>
|
|
|
|
<div>
|
|
<div>
|
|
<input type="password" name="password" placeholder="Geslo">
|
|
</div>
|
|
</div>
|
|
|
|
<div>
|
|
<div>
|
|
<input type="institution" name="institution" placeholder="Naziv institucije" autofocus="">
|
|
</div>
|
|
</div>
|
|
|
|
<label for="role">Vloga v instituciji</label>
|
|
<select id="role" name="role" >
|
|
<option value="coordinator">Koordinator/-ka</option>
|
|
<option value="mentor">Mentor/-ica</option>
|
|
<option value="other">Druga vloga</option>
|
|
</select>
|
|
<button class="button-general" style="margin-top: 20px;">REGISTRACIJA</button>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div id="rect2" class="mock-side">
|
|
</div>
|
|
</div>
|
|
</body>
|