aboutsummaryrefslogtreecommitdiffstats
path: root/templates/event/new.html.tera
blob: 9a2c2daf33592814ca502199eb4f121f90f6d62d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
{% extends "base" %}
{% block title %}Create new event — {% endblock title %}
{% block contents %}
    <h1>Create new event</h1>

    <form name="new_event_form" action="create" method="POST">
      <label for="name">Name: </label><input name="name" type="text">
      <label for="description">Description: </label>
      <textarea name="description"></textarea>
      <input type="submit" value="Save">
    </form>
{% endblock contents %}