Copyright and fix for test formatter

This commit is contained in:
BaoLe106 2024-02-21 14:45:06 +08:00
parent c2f6dba462
commit a85558eb97
5 changed files with 35 additions and 22 deletions

View file

@ -1,5 +1,14 @@
{% extends 'base.html' %}
{% block media %}
<style>
.copyright {
position: absolute;
bottom: 48px;
left: 50%;
transform: translate(-50%, -50%);
}
</style>
{% endblock %}
{% block body %}
<center>
<form method="post" enctype="multipart/form-data">
@ -7,5 +16,8 @@
{{ form }}
<button type="submit" style="margin-top: 2em">{{_('Upload')}}</button>
</form>
<div class="copyright">
<p >{{_('Copyright')}} Nguyễn Tiến Trung Kiên</p>
</div>
</center>
{% endblock %}