I am using bootstrap as the template. The form is designed as the font awesome icon will be the file upload field in the design.
Is there any way to do it? I have no idea about that. I am sharing the template code here. If anyone can help me, I will be grateful.
Thanks.
<form method="POST" action="{% url '' %}">
{% csrf_token %}
<div class="icons">
<div class="row">
<div class="col-4">
<a href="#">
<i class="fa fa-picture-o" aria-hidden="true"></i>
<p>Gallery</p>
</a>
</div>
<div class="col-4">
<a href="#">
<i class="fa fa-camera" aria-hidden="true"></i>
<p>Camera</p>
</a>
</div>
<div class="col-4">
<a
class=""
href="#"
>
<i class="fa fa-microphone" aria-hidden="true"></i>
<p>Audio</p>
</a>
</div>
</div>
</div>
<div class="mb-3">
<textarea
class="form-control"
id="exampleFormControlTextarea1"
rows="8"
placeholder="Type your question here"
name="description"
></textarea>
</div>
<button type="submit" class="btn">Submit</button>
</form>