You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
TacticalWatermarks/app/templates/public/write_comment.html

24 lines
464 B
HTML

{% extends "public/templates/public_template.html" %}
{% block title %}LEAVE A COMMENT{% endblock %}
{% block main %}
<div class="spaceleft">
<h3>LEAVE A COMMENT</h3>
<form action='/submitcomment' method='post'>
<label for='name'>Name</label>
<input name='name' type='text'></input>
<label for='commenting'>Comment</label>
<input name='commenting' type='text'></input>
<input type='submit'></input>
</form>
</div>
{% endblock %}