cycles/period/templates/cycle/create.html
Alexander Hosking 661b7bd2e6 Add base framework
Add Templates
Add Static Files
Add SQL
2022-04-13 19:12:49 -04:00

15 lines
506 B
HTML

{% extends 'base.html' %}
{% block header %}
<h1>{% block title %}New Cycle{% endblock %}</h1>
{% endblock %}
{% block content %}
<form method="post">
<label for="start_time">Start Time</label>
<input name="start_time" id="title" value="{{ request.form['start_time'] }}" required type="date">
<label for="end_time">End Time</label>
<input name="end_time" id="end_time" value="{{ request.form['end_time'] }}" type="date">
<input type="submit" value="Save">
</form>
{% endblock %}