41 lines
1.0 KiB
HTML
41 lines
1.0 KiB
HTML
{% extends "base.html" %}
|
|
{% block content %}
|
|
|
|
<div class="form-container">
|
|
<h3 class="form-title">Fill up the form and upload your MoU</h3>
|
|
<form action="{% url "mou" %}" 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="MoU" readonly></td>
|
|
</tr>
|
|
<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="date", name="contract_mou_date"></th>
|
|
</tr>
|
|
|
|
<tr>
|
|
<th align="left">Upload MoU</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 %} |