Nelze vybrat více než 25 témat
Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.
12345678910111213141516 |
- {% extends "admin/layout.html" %} {% block content %}
- <h1 class="heading">Admin</h1>
- <form class="form" method="POST" action="/posts">
- <div class="form__field">
- <label for="title" class="form__label">Title</label>
- <input class="form__text-field" type="text" name="title" />
- </div>
- <div class="form__field">
- <label for="body" class="form__label">Body</label>
- <textarea class="form__textarea" name="body"></textarea>
- </div>
- <div class="form__field">
- <input class="form__button" type="submit" value="Post" />
- </div>
- </form>
- {% endblock %}
|