17 lines
609 B
HTML
17 lines
609 B
HTML
|
|
{% extends "base.html" %}
|
||
|
|
{% block title %}Admin prijava — Gogo Telefon{% endblock %}
|
||
|
|
{% block content %}
|
||
|
|
<div style="max-width:380px;margin:60px auto">
|
||
|
|
<div class="card">
|
||
|
|
<h1 style="margin-top:0">Gogo <span style="color:var(--brand)">Admin</span></h1>
|
||
|
|
<form method="post" action="/admin/login">
|
||
|
|
<label>Email</label>
|
||
|
|
<input type="email" name="email" required autofocus>
|
||
|
|
<label>Lozinka</label>
|
||
|
|
<input type="password" name="password" required>
|
||
|
|
<div style="margin-top:16px"><button style="width:100%">Prijavi se</button></div>
|
||
|
|
</form>
|
||
|
|
</div>
|
||
|
|
</div>
|
||
|
|
{% endblock %}
|