resolution-archive/templates/resulation/mou.html

47 lines
985 B
HTML
Raw Normal View History

2025-01-26 11:22:57 +06:00
{% extends "base.html" %}
{% block content %}
<div>
<h3>Fillup the form and upload MOU</h3>
<form action "/saved.html">
<table>
<tr>
<th align="left">Name of organization</th>
<th><input type="text", name="org_unit"></th>
</tr>
<tr>
<th align="left">Tropic/Subject</th>
<th><input type="text", name="tropic"></th>
</tr>
<tr>
<th align="left">First Party</th>
<th><input type="text", name="first_party"></th>
</tr>
<tr>
<th align="left">Second Party</th>
<th><input type="text", name="second_party"></th>
</tr>
<tr>
<th align="left">MoU Date</th>
<th><input type="text", name="contract_date"></th>
</tr>
<tr>
<th align="left">Upload MoU</th>
<th><input type="file", name="mou_file"></th>
</tr>
<tr>
<th></th>
<th strong center><input Type="Submit">
</tr>
</table>
</form>
</div>
<br>
<br>
{% endblock content %}