gitpad/templates/components/comments/new.html

29 lines
805 B
HTML
Raw Normal View History

2022-03-13 14:30:42 +00:00
<form action="{{gist_comment_link}}" class="gist__comment-form" method="post" accept-charset="utf-8">
<label class="form__label" for="comment" >
<textarea
required
class="gist__comment-content"
name="comment"
id="comment"
type="text"
placeholder="Markdown supported"
{% if new_comment %}
value="{{ new_comment }}"
{% endif %}
></textarea>
</label>
<div class="gist__button-group">
<div class="gist__button-container">
<button
class="form__submit--secondary"
name="add_file"
value="true"
type="submit"
>Preview</button>
</div>
<div class="gist__button-container">
<button class="form__submit" type="submit">Comment</button>
</div>
</div>
</form>