//here is form in django code
<form method="post" novalidate>
{% csrf_token %}
{{ form }}
<button type="submit">Submit</button>
</form>
//now the form is rendered as
<input type="text" name="phone_email" required id="id_phone_email">
<input type="text" name="full_name" required id="id_full_name">
//now this html code doesn't have any input field closing tag(/>) any i am being able to run the jsx code because of the absence of closing input tag.any idea how can i put closing tag(/>) in django??