16 lines
418 B
HTML
16 lines
418 B
HTML
{% extends "layout.html" %}
|
|
|
|
{% block content %}
|
|
|
|
<div style="text-align:center; margin-top:50px; color:#00ffcc;">
|
|
<h1>Admin</h1>
|
|
|
|
<form method="POST">
|
|
<input type="text" name="code" value="{{ code }}" required
|
|
style="padding:10px; font-size:20px; text-align:center;">
|
|
<br><br>
|
|
<button type="submit">Speichern</button>
|
|
</form>
|
|
</div>
|
|
|
|
{% endblock %} |