mirror of
https://github.com/robertorincos/LabEngSW.git
synced 2026-01-15 17:22:55 -03:00
18 lines
473 B
HTML
18 lines
473 B
HTML
{% extends 'base.html' %}
|
|
{% block head %}
|
|
<title>Fazer coisas</title>
|
|
{% endblock %}
|
|
|
|
{% block body %}
|
|
<div class="content">
|
|
<h1 style="text-align: center">Update Master</h1>
|
|
|
|
<div class="form">
|
|
<form style="margin-top: 20px;" action="/update/{{task.id}}" method="POST">
|
|
<input type="text" name="content" id="content" value="{{task.content}}">
|
|
<input type="submit" value="Update task">
|
|
</form>
|
|
</div>
|
|
</div>
|
|
|
|
{% endblock %} |