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-12-23 07:51:37 +00:00
< link rel = "stylesheet" href = "../static/css/login-styles.css" type = "text/css" >
< 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" >
2021-12-23 07:51:37 +00:00
< img src = "../static/image/logo.svg" alt = "logo" / >
2021-11-16 17:45:20 +00:00
< / 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-12-13 20:01:28 +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 v pedagoški naziv.< / 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 >
2022-01-05 18:33:43 +00:00
{% with messages = get_flashed_messages() %}
{% if messages %}
< div class = "alert" >
< img src = "../static/image/alert.svg" alt = "alert" / >
< p > {{ messages[0] }}< / p >
< / div >
{% endif %}
{% endwith %}
2021-11-16 17:45:20 +00:00
< 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 >
2022-01-08 15:25:25 +00:00
< input type = "password" name = "password" >
< label class = "input-hint" > Geslo naj bo dolgo vsaj 8 znakov.< / label >
2021-11-16 17:45:20 +00:00
< / 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 >
2022-01-05 18:33:43 +00:00
2021-12-06 18:31:48 +00:00
< div class = "back-to-login" >
2021-12-23 07:51:37 +00:00
< img src = "../static/image/chevron-left.svg" / >
< a href = "../login" > Nazaj na prijavo< / a >
2021-12-06 18:31:48 +00:00
< / div >
2021-11-16 17:45:20 +00:00
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 >