forked from rDrama/rDrama
1
0
Fork 0
rDrama/files/templates/authforms.html

69 lines
1.9 KiB
HTML
Raw Normal View History

{%- import 'util/helpers.html' as help -%}
{%- import 'html_head.html' as html_head with context -%}
2022-05-04 23:09:46 +00:00
<!DOCTYPE html>
<html lang="en">
{{html_head.html_head(false, false, false, none, none, "", "")}}
2022-05-04 23:09:46 +00:00
<body id="login">
<div class="container-fluid position-absolute h-100 p-0">
<div class="row no-gutters h-100">
<div class="col-12 col-md-6 my-auto p-3">
<div class="row justify-content-center">
<div class="col-10 col-md-7">
2022-10-29 00:52:11 +00:00
<h2>{% block authtitle %}{% endblock %}</h2>
2022-05-04 23:09:46 +00:00
<p class="text-muted mb-md-5">{% block authtext %}{% endblock %}</p>
{% if error %}
<div class="alert alert-danger alert-dismissible fade show d-flex my-3" role="alert">
<i class="fas fa-exclamation-circle my-auto"></i>
<span>
{{error}}
</span>
2022-10-28 23:35:14 +00:00
<button type="button" class="close" data-bs-dismiss="alert" aria-label="Close">
2022-09-08 17:24:00 +00:00
<span aria-hidden="true"><i class="far fa-times"></i></span>
2022-05-04 23:09:46 +00:00
</button>
</div>
{% endif %}
{% if msg %}
<div class="alert alert-success alert-dismissible fade show d-flex my-3" role="alert">
<i class="fas fa-info-circle my-auto" aria-hidden="true"></i>
<span>
{{msg}}
</span>
2022-10-28 23:35:14 +00:00
<button type="button" class="close" data-bs-dismiss="alert" aria-label="Close">
2022-09-08 17:24:00 +00:00
<span aria-hidden="true"><i class="far fa-times"></i></span>
2022-05-04 23:09:46 +00:00
</button>
</div>
{% endif %}
{% block content %}
{% endblock %}
</div>
</div>
</div>
2022-10-23 17:57:38 +00:00
<div class="col-12 col-md-6 d-mob-none">
2022-05-04 23:09:46 +00:00
<div class="splash-wrapper">
<div class="splash-overlay"></div>
<img alt="cover" loading="lazy" class="splash-img" src="{{'cover.webp' | asset_siteimg}}"></img>
2022-05-04 23:09:46 +00:00
</div>
</div>
</div>
</div>
</body>
2022-10-06 23:45:23 +00:00
</html>