shoplist2/templates/addForm.html
2020-01-23 03:18:24 +11:00

9 lines
493 B
HTML

<div style="text-align: center">
<form action="/post" method="post">
<p style="display: inline">Name: </p>
<input class="form-control" style="width: 50%; display: inline" type="text" name="name" value=""><br>
<p style="display: inline">Item: </p>
<input class="form-control" style="width: 50%; display: inline" type="text" name="item" value=""><br><br>
<input class="btn btn-secondary" type="submit" name="addValue"value="Submit">
</form>
</div>