Service for editing/creating recipe
[recipes.git] / backend / templates / edit_recipe.html
1 {% extends "base_with_list.html" %}
2
3 {% block content %}
4
5 <label for="title_field">Title</label>
6 <input
7 id="title_field"
8 type="text"
9 name="title"
10 value="{{ current_recipe.title }}"
11 autocapitalize="none"
12 autocomplete="title"
13 autofocus="autofocus" />
14
15 {% endblock %}