{% extends "base.html" %} {% block title %}Tworzenie obrazu{% endblock %} {% block style %} /* styl dla całej strony */ body { font-family: Arial, sans-serif; background-color: #f2f2f2; } /* styl dla sekcji formularza */ form { max-width: 500px; margin: 0 auto; padding: 20px; background-color: #fff; border-radius: 10px; box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2); } /* styl dla tytułu formularza */ form h2 { text-align: center; font-weight: bold; margin-bottom: 20px; } /* styl dla etykiet formularza */ form label { display: block; font-weight: bold; margin-bottom: 5px; } /* styl dla pól formularza */ form input[type="text"], form input[type="password"], form input[type="number"], form textarea { width: 100%; padding: 10px; border: 2px solid #ccc; border-radius: 5px; margin-bottom: 20px; font-size: 16px; } form textarea { resize: none; } /* styl dla przycisku formularza */ form button[type="submit"] { background-color: #4CAF50; color: #fff; border: none; padding: 10px 20px; border-radius: 5px; font-size: 16px; cursor: pointer; } /* styl dla przycisku formularza po najechaniu myszką */ form button[type="submit"]:hover { background-color: #3e8e41; } {% endblock %} {% block content %}

Formularz tworzenia obrazu konfiguracyjnego













{% endblock %}