khaikang/templates/index.html

12 lines
371 B
HTML
Raw Normal View History

2022-11-11 01:37:16 +08:00
{% extends "base_generic.html" %}
{% block content %}
<form method="POST" id="posting-form">
{% csrf_token %}
<div class="posting-form-group">
<label>Post</label>
<input type="text" class="form-post" id="post_text" placeholder="What do you want to post?">
</div>
<button type="submit_post" class="btn">Post!</button>
</form>
{% endblock %}