2024-01-08 18:27:20 +00:00
|
|
|
{% extends 'base.html' %}
|
2024-02-22 04:05:06 +00:00
|
|
|
{% block media %}
|
|
|
|
<style>
|
|
|
|
.copyright {
|
|
|
|
position: absolute;
|
|
|
|
bottom: 48px;
|
|
|
|
left: 50%;
|
|
|
|
transform: translate(-50%, -50%);
|
|
|
|
}
|
|
|
|
</style>
|
|
|
|
{% endblock %}
|
2024-01-08 18:27:20 +00:00
|
|
|
{% block body %}
|
2024-01-08 19:06:18 +00:00
|
|
|
<center>
|
|
|
|
<form method="post" enctype="multipart/form-data">
|
|
|
|
{% csrf_token %}
|
|
|
|
{{ form }}
|
|
|
|
<button type="submit" style="margin-top: 2em">{{_('Upload')}}</button>
|
|
|
|
</form>
|
2024-02-22 04:05:06 +00:00
|
|
|
<div class="copyright">
|
|
|
|
<p >{{_('Copyright')}} Nguyễn Tiến Trung Kiên</p>
|
|
|
|
</div>
|
2024-01-08 19:06:18 +00:00
|
|
|
</center>
|
2024-01-08 18:27:20 +00:00
|
|
|
{% endblock %}
|