resolution-archive/templates/resulation/mou.html

41 lines
1.0 KiB
HTML
Raw Permalink Normal View History

2025-01-26 11:22:57 +06:00
{% extends "base.html" %}
{% block content %}
2025-02-24 16:30:01 +06:00
2025-02-18 16:23:22 +06:00
<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">
2025-01-26 11:22:57 +06:00
<tr>
2025-02-18 16:23:22 +06:00
<th align="left">Type of Upload</th>
<td><input type="text" name="pdftype" value="MoU" readonly></td>
2025-01-26 11:22:57 +06:00
</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>
2025-02-18 16:23:22 +06:00
<th><input type="date", name="contract_mou_date"></th>
2025-01-26 11:22:57 +06:00
</tr>
<tr>
<th align="left">Upload MoU</th>
2025-02-18 16:23:22 +06:00
<th><input type="file", name="res_con_mou_file"></th>
2025-01-26 11:22:57 +06:00
</tr>
<tr>
<th></th>
2025-02-18 16:23:22 +06:00
{% csrf_token %}
2025-01-26 11:22:57 +06:00
<th strong center><input Type="Submit">
</tr>
</table>
</form>
</div>
<br>
<br>
{% endblock content %}