resolution-archive/templates/resulation/contract.html

58 lines
1.2 KiB
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 your Contract</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</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">Contract Date</th>
<th><input type="text", name="contract_date"></th>
</tr>
<tr>
<th align="left">End Date</th>
<th><input type="Date", name="closing_date"></th>
</tr>
<tr>
<th align="left">Duration of Cotract</th>
<th><input type="Date", name="duration"></th>
</tr>
<tr>
<th align="left">Upload Resulation</th>
<th><input type="file", name="contract_file"></th>
</tr>
<tr>
<th></th>
<th strong center><input Type="Submit">
</tr>
</table>
</form>
</div>
<br>
<br>
{% endblock content %}