forked from orson/bachemap
52 lines
1.3 KiB
HTML
52 lines
1.3 KiB
HTML
{% extends 'secondbase.html' %}
|
|
{% block content %}
|
|
<div class="container" style="display: flex; justify-content: center; align-items: center; min-width: 40vw; flex-direction: column;">
|
|
|
|
<style>
|
|
form {
|
|
max-width: 80vw;
|
|
padding: 40px;
|
|
}
|
|
|
|
.flash-message {
|
|
position: fixed;
|
|
top: 20vh;
|
|
left: 50%;
|
|
transform: translateX(-50%);
|
|
background-color: #f44336;
|
|
color: white;
|
|
padding: 15px;
|
|
border-radius: 4px;
|
|
z-index: 100;
|
|
text-align: center;
|
|
box-shadow: 0 4px 8px rgba(0,0,0,0.2);
|
|
max-width: 80%;
|
|
}
|
|
</style>
|
|
|
|
{% if messages %}
|
|
<div id="flash-message" class="flash-message">
|
|
{{ messages }}
|
|
</div>
|
|
<script>
|
|
setTimeout(function() {
|
|
var flashMessage = document.getElementById('flash-message');
|
|
if (flashMessage) {
|
|
flashMessage.style.display = 'none';
|
|
}
|
|
}, 3000);
|
|
</script>
|
|
{% endif %}
|
|
|
|
<form method="post" enctype="multipart/form-data" style="background-color: rgb(205, 243, 148);">
|
|
{{ form.csrf_token }}
|
|
{{ form.hidden_tag() }}
|
|
{{ form.username.label }}
|
|
{{ form.username() }}
|
|
{{ form.pwd.label }}
|
|
{{ form.pwd() }}
|
|
|
|
<p>{{ form.submit() }}</p>
|
|
</form>
|
|
</div>
|
|
{% endblock %} |