-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathquestion.html
More file actions
24 lines (21 loc) · 854 Bytes
/
question.html
File metadata and controls
24 lines (21 loc) · 854 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{% extends 'base.html' %}
{% block title %}Questions{% endblock %}
{% block head %}
<link rel="stylesheet" href="{{ url_for('static',filename='css/question.css')}}">
{% endblock %}
{% block main %}
<h3 class="page-title">Release Questions</h3>
<form action="" method="post">
<div class="form-container">
<div class="form-group">
<input type="text" placeholder="Please input titles" name="title" class="form-control">
</div>
<div class="form-group">
<textarea placeholder="Please input content" name="content" rows="10" class = "form-control"></textarea>
</div>
<div class="form-group">
<button class="btn btn-primary">Submit</button>
</div>
</div>
</form>
{% endblock %}