51 lines
1.3 KiB
HTML
51 lines
1.3 KiB
HTML
{% extends "base.html" %}
|
|
{% block content %}
|
|
|
|
<div class="form-container">
|
|
<h3 class="form-title">Fill up the form and upload Contract</h3>
|
|
<form action="{% url "deed" %}" method="POST" enctype="multipart/form-data">
|
|
<table class="form-table">
|
|
<tr>
|
|
<th align="left">Type of Upload</th>
|
|
<td><input type="text" name="pdftype" value="Contract" readonly></td>
|
|
</tr>
|
|
<tr>
|
|
<th align="left">Contract Name</th>
|
|
<th><input type="text", name="topic"></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 Signing Date</th>
|
|
<th><input type="Date", name="contract_date"></th>
|
|
</tr>
|
|
<tr>
|
|
<th align="left">Contract End Date</th>
|
|
<th><input type="Date", name="closing_date"></th>
|
|
</tr>
|
|
<tr>
|
|
<th align="left">Duration of Cotract</th>
|
|
<th><input type="text", name="duration"></th>
|
|
</tr>
|
|
<tr>
|
|
<tr>
|
|
<th align="left">Upload Contract</th>
|
|
<th><input type="file", name="res_con_mou_file"></th>
|
|
</tr>
|
|
<tr>
|
|
<th></th>
|
|
{% csrf_token %}
|
|
<th strong center><input Type="Submit">
|
|
</tr>
|
|
</table>
|
|
</form>
|
|
</div>
|
|
<br>
|
|
<br>
|
|
{% endblock content %} |