Taking out jidox
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
Ekaropolus 2026-01-04 15:32:54 -06:00
parent b9faf91831
commit ebd426a304
15 changed files with 2847 additions and 2847 deletions

View File

@ -1,97 +1,97 @@
{% extends "pxy_dashboard/account/base.html" %}
{% load static crispy_forms_tags socialaccount %}
{% block title %}Log In{% endblock title %}
{% block body_attr %}
class="authentication-bg position-relative"
{% endblock %}
{% block page_content %}
{% include "pxy_dashboard/partials/background.html" %}
<div class="account-pages pt-2 pt-sm-5 pb-4 pb-sm-5 position-relative">
<div class="container">
<div class="row justify-content-center">
<div class="col-xxl-4 col-lg-5">
<div class="card">
<!-- Logo -->
<div class="card-header pt-4 text-center">
<div class="auth-brand mb-0">
<a href="{% url 'index' %}" class="logo-dark">
<span><img src="{% static 'dashboard/images/logo-dark.png' %}" alt="dark logo" height="28"></span>
</a>
<a href="{% url 'index' %}" class="logo-light">
<span><img src="{% static 'dashboard/images/logo.png' %}" alt="logo" height="28"></span>
</a>
</div>
</div>
<div class="card-body p-4">
<div class="text-center w-75 m-auto">
<h4 class="text-dark-50 text-center pb-0 fw-bold">Sign In</h4>
<p class="text-muted mb-4">Enter your email address and password to access admin panel.
</p>
</div>
{% load socialaccount %}
{% if True %}
<div class="text-center my-3">
<a href="{% provider_login_url 'github' %}" class="btn btn-dark">
<i class="mdi mdi-github me-1"></i> Sign in with GitHub
</a>
</div>
{% endif %}
<form method="POST" action="{% url 'account_login' %}" novalidate>
{% csrf_token %}
{{ form|crispy }}
{% if redirect_field_value %}
<input type="hidden" name="{{ redirect_field_name }}"
value="{{ redirect_field_value }}"/>
{% endif %}
<div class="mb-3 mb-0 text-center">
<button class="btn btn-primary" type="submit"> Log In </button>
</div>
</form>
</div> <!-- end card-body -->
</div>
<!-- end card -->
<div class="row mt-3">
<div class="col-12 text-center">
<p class="text-white-50">Don't have an account? <a href="{{ signup_url }}"
class="text-white ms-1 link-offset-3 text-decoration-underline"><b>Sign Up</b></a>
</p>
</div> <!-- end col -->
</div>
<!-- end row -->
</div> <!-- end col -->
</div>
<!-- end row -->
</div>
<!-- end container -->
</div>
<!-- end page -->
<footer class="footer footer-alt">
<span class="text-white-50">
<script>document.write(new Date().getFullYear())</script> © Jidox - Coderthemes.com
</span>
</footer>
{% endblock %}
{% block extra_js %}
<script>
document.getElementById('id_login').value = "test@test.com"
document.getElementById('id_password').value = "password"
</script>
{% endblock %}
{% extends "pxy_dashboard/account/base.html" %}
{% load static crispy_forms_tags socialaccount %}
{% block title %}Log In{% endblock title %}
{% block body_attr %}
class="authentication-bg position-relative"
{% endblock %}
{% block page_content %}
{% include "pxy_dashboard/partials/background.html" %}
<div class="account-pages pt-2 pt-sm-5 pb-4 pb-sm-5 position-relative">
<div class="container">
<div class="row justify-content-center">
<div class="col-xxl-4 col-lg-5">
<div class="card">
<!-- Logo -->
<div class="card-header pt-4 text-center">
<div class="auth-brand mb-0">
<a href="{% url 'index' %}" class="logo-dark">
<span><img src="{% static 'dashboard/images/logo-dark.png' %}" alt="dark logo" height="28"></span>
</a>
<a href="{% url 'index' %}" class="logo-light">
<span><img src="{% static 'dashboard/images/logo.png' %}" alt="logo" height="28"></span>
</a>
</div>
</div>
<div class="card-body p-4">
<div class="text-center w-75 m-auto">
<h4 class="text-dark-50 text-center pb-0 fw-bold">Sign In</h4>
<p class="text-muted mb-4">Enter your email address and password to access admin panel.
</p>
</div>
{% load socialaccount %}
{% if True %}
<div class="text-center my-3">
<a href="{% provider_login_url 'github' %}" class="btn btn-dark">
<i class="mdi mdi-github me-1"></i> Sign in with GitHub
</a>
</div>
{% endif %}
<form method="POST" action="{% url 'account_login' %}" novalidate>
{% csrf_token %}
{{ form|crispy }}
{% if redirect_field_value %}
<input type="hidden" name="{{ redirect_field_name }}"
value="{{ redirect_field_value }}"/>
{% endif %}
<div class="mb-3 mb-0 text-center">
<button class="btn btn-primary" type="submit"> Log In </button>
</div>
</form>
</div> <!-- end card-body -->
</div>
<!-- end card -->
<div class="row mt-3">
<div class="col-12 text-center">
<p class="text-white-50">Don't have an account? <a href="{{ signup_url }}"
class="text-white ms-1 link-offset-3 text-decoration-underline"><b>Sign Up</b></a>
</p>
</div> <!-- end col -->
</div>
<!-- end row -->
</div> <!-- end col -->
</div>
<!-- end row -->
</div>
<!-- end container -->
</div>
<!-- end page -->
<footer class="footer footer-alt">
<span class="text-white-50">
<script>document.write(new Date().getFullYear())</script> © Polisplexity - Coderthemes.com
</span>
</footer>
{% endblock %}
{% block extra_js %}
<script>
document.getElementById('id_login').value = "test@test.com"
document.getElementById('id_password').value = "password"
</script>
{% endblock %}

View File

@ -1,76 +1,76 @@
{% extends "pxy_dashboard/account/base.html" %}
{% load static i18n crispy_forms_tags %}
{% block title %}{% trans "Recover Password" %}{% endblock title %}
{% block body_attr %}
class="authentication-bg"
{% endblock %}
{% block page_content %}
{% include "pxy_dashboard/partials/background.html" %}
<div class="account-pages pt-2 pt-sm-5 pb-4 pb-sm-5 position-relative">
<div class="container">
<div class="row justify-content-center">
<div class="col-xxl-4 col-lg-5">
<div class="card">
<!-- Logo -->
<div class="card-header pt-4 text-center">
<div class="auth-brand mb-0">
<a href="{% url 'index' %}" class="logo-dark">
<span><img src="{% static 'dashboard/images/logo-dark.png' %}" alt="dark logo"
height="28"></span>
</a>
<a href="{% url 'index' %}" class="logo-light">
<span><img src="{% static 'dashboard/images/logo.png' %}" alt="logo" height="28"></span>
</a>
</div>
</div>
<div class="card-body p-4">
<div class="text-center w-75 m-auto">
<h4 class="text-dark-50 text-center mt-0 fw-bold">Reset Password</h4>
<p class="text-muted mb-4">Enter your email address and we'll send you an email with
instructions to reset your password.</p>
</div>
{% if user.is_authenticated %}
{% include "account/snippets/already_logged_in.html" %}
{% endif %}
<form method="POST" action="{% url 'account_reset_password' %}" class="password_reset"
novalidate>
{% csrf_token %}
{{ form|crispy }}
<div class="mb-0 text-center">
<button class="btn btn-primary" type="submit">{% trans 'Reset Password' %}</button>
</div>
</form>
</div> <!-- end card-body-->
</div>
<!-- end card -->
<div class="row mt-3">
<div class="col-12 text-center">
<p class="text-white-50">Back to <a href="{% url 'account_login' %}"
class="text-white ms-1 link-offset-3 text-decoration-underline"><b>Log
In</b></a>
</p>
</div> <!-- end col -->
</div>
<!-- end row -->
</div> <!-- end col -->
</div>
<!-- end row -->
</div>
<!-- end container -->
</div>
<!-- end page -->
<footer class="footer footer-alt">
<span class="text-white-50"><script>document.write(new Date().getFullYear())</script> © Jidox - Coderthemes.com</span>
</footer>
{% extends "pxy_dashboard/account/base.html" %}
{% load static i18n crispy_forms_tags %}
{% block title %}{% trans "Recover Password" %}{% endblock title %}
{% block body_attr %}
class="authentication-bg"
{% endblock %}
{% block page_content %}
{% include "pxy_dashboard/partials/background.html" %}
<div class="account-pages pt-2 pt-sm-5 pb-4 pb-sm-5 position-relative">
<div class="container">
<div class="row justify-content-center">
<div class="col-xxl-4 col-lg-5">
<div class="card">
<!-- Logo -->
<div class="card-header pt-4 text-center">
<div class="auth-brand mb-0">
<a href="{% url 'index' %}" class="logo-dark">
<span><img src="{% static 'dashboard/images/logo-dark.png' %}" alt="dark logo"
height="28"></span>
</a>
<a href="{% url 'index' %}" class="logo-light">
<span><img src="{% static 'dashboard/images/logo.png' %}" alt="logo" height="28"></span>
</a>
</div>
</div>
<div class="card-body p-4">
<div class="text-center w-75 m-auto">
<h4 class="text-dark-50 text-center mt-0 fw-bold">Reset Password</h4>
<p class="text-muted mb-4">Enter your email address and we'll send you an email with
instructions to reset your password.</p>
</div>
{% if user.is_authenticated %}
{% include "account/snippets/already_logged_in.html" %}
{% endif %}
<form method="POST" action="{% url 'account_reset_password' %}" class="password_reset"
novalidate>
{% csrf_token %}
{{ form|crispy }}
<div class="mb-0 text-center">
<button class="btn btn-primary" type="submit">{% trans 'Reset Password' %}</button>
</div>
</form>
</div> <!-- end card-body-->
</div>
<!-- end card -->
<div class="row mt-3">
<div class="col-12 text-center">
<p class="text-white-50">Back to <a href="{% url 'account_login' %}"
class="text-white ms-1 link-offset-3 text-decoration-underline"><b>Log
In</b></a>
</p>
</div> <!-- end col -->
</div>
<!-- end row -->
</div> <!-- end col -->
</div>
<!-- end row -->
</div>
<!-- end container -->
</div>
<!-- end page -->
<footer class="footer footer-alt">
<span class="text-white-50"><script>document.write(new Date().getFullYear())</script> © Polisplexity - Coderthemes.com</span>
</footer>
{% endblock %}

File diff suppressed because it is too large Load Diff

View File

@ -1,109 +1,109 @@
{% load static %}
{% include "pxy_dashboard/partials/main.html" %}
<head>
{% include "pxy_dashboard/partials/title-meta.html" with title="Confirm Email" %}
{% include "pxy_dashboard/partials/head-css.html" %}
</head>
<body class="authentication-bg pb-0">
<div class="auth-fluid">
<!-- Auth fluid right content -->
<div class="auth-fluid-right text-center">
<div class="auth-user-testimonial">
<div id="carouselExampleFade" class="carousel slide carousel-fade" data-bs-ride="carousel">
<div class="carousel-inner">
<div class="carousel-item active">
<h2 class="mb-3">I love the color!</h2>
<p class="lead"><i class="ri-double-quotes-l"></i> Everything you need is in this template. Love the overall look and feel. Not too flashy, and still very professional and smart.
</p>
<p>
- Admin User
</p>
</div>
<div class="carousel-item">
<h2 class="mb-3">Flexibility !</h2>
<p class="lead"><i class="ri-double-quotes-l"></i> Pretty nice theme, hoping you guys could add more features to this. Keep up the good work.
</p>
<p>
- Admin User
</p>
</div>
<div class="carousel-item">
<h2 class="mb-3">Feature Availability!</h2>
<p class="lead"><i class="ri-double-quotes-l"></i> This is a great product, helped us a lot and very quick to work with and implement.
</p>
<p>
- Admin User
</p>
</div>
</div>
</div>
</div> <!-- end auth-user-testimonial-->
</div>
<!-- end Auth fluid right content -->
<!--Auth fluid left content -->
<div class="auth-fluid-form-box">
<div class="card-body d-flex flex-column h-100 gap-3">
<!-- Logo -->
<div class="auth-brand text-center text-lg-start">
<a href="/" class="logo-dark">
<span><img src="{% static 'dashboard/images/logo-dark.png' %}" alt="dark logo" height="22"></span>
</a>
<a href="/" class="logo-light">
<span><img src="{% static 'dashboard/images/logo.png' %}" alt="logo" height="22"></span>
</a>
</div>
<div class="my-auto">
<!-- email send icon with text-->
<div class="text-center m-auto">
<img src="{% static 'dashboard/images/svg/mail_sent.svg' %}" alt="mail sent image" height="64" />
<h4 class="text-dark-50 text-center mt-4 fw-bold">Please check your email</h4>
<p class="text-muted mb-4">
A email has been send to <b>youremail@domain.com</b>.
Please check for an email from company and click on the included link to
reset your password.
</p>
</div>
<!-- form -->
<form action="/">
<div class="mb-0 d-grid text-center">
<button class="btn btn-primary" type="submit"><i class="ri-home-4-line me-1"></i> Back to Home </button>
</div>
</form>
<!-- end form-->
</div>
<!-- Footer-->
<footer class="footer footer-alt">
<p class="text-muted">
<script>document.write(new Date().getFullYear())</script> © Jidox - Coderthemes.com
</p>
</footer>
</div> <!-- end .card-body -->
</div>
<!-- end auth-fluid-form-box-->
</div>
<!-- end auth-fluid-->
{% include "pxy_dashboard/partials/footer-script.html" %}
{% block extra_js %}
<!-- App js -->
<script src="{% static 'dashboard/js/app.min.js' %}"></script>
{% endblock extra_js %}
{% load static %}
{% include "pxy_dashboard/partials/main.html" %}
<head>
{% include "pxy_dashboard/partials/title-meta.html" with title="Confirm Email" %}
{% include "pxy_dashboard/partials/head-css.html" %}
</head>
<body class="authentication-bg pb-0">
<div class="auth-fluid">
<!-- Auth fluid right content -->
<div class="auth-fluid-right text-center">
<div class="auth-user-testimonial">
<div id="carouselExampleFade" class="carousel slide carousel-fade" data-bs-ride="carousel">
<div class="carousel-inner">
<div class="carousel-item active">
<h2 class="mb-3">I love the color!</h2>
<p class="lead"><i class="ri-double-quotes-l"></i> Everything you need is in this template. Love the overall look and feel. Not too flashy, and still very professional and smart.
</p>
<p>
- Admin User
</p>
</div>
<div class="carousel-item">
<h2 class="mb-3">Flexibility !</h2>
<p class="lead"><i class="ri-double-quotes-l"></i> Pretty nice theme, hoping you guys could add more features to this. Keep up the good work.
</p>
<p>
- Admin User
</p>
</div>
<div class="carousel-item">
<h2 class="mb-3">Feature Availability!</h2>
<p class="lead"><i class="ri-double-quotes-l"></i> This is a great product, helped us a lot and very quick to work with and implement.
</p>
<p>
- Admin User
</p>
</div>
</div>
</div>
</div> <!-- end auth-user-testimonial-->
</div>
<!-- end Auth fluid right content -->
<!--Auth fluid left content -->
<div class="auth-fluid-form-box">
<div class="card-body d-flex flex-column h-100 gap-3">
<!-- Logo -->
<div class="auth-brand text-center text-lg-start">
<a href="/" class="logo-dark">
<span><img src="{% static 'dashboard/images/logo-dark.png' %}" alt="dark logo" height="22"></span>
</a>
<a href="/" class="logo-light">
<span><img src="{% static 'dashboard/images/logo.png' %}" alt="logo" height="22"></span>
</a>
</div>
<div class="my-auto">
<!-- email send icon with text-->
<div class="text-center m-auto">
<img src="{% static 'dashboard/images/svg/mail_sent.svg' %}" alt="mail sent image" height="64" />
<h4 class="text-dark-50 text-center mt-4 fw-bold">Please check your email</h4>
<p class="text-muted mb-4">
A email has been send to <b>youremail@domain.com</b>.
Please check for an email from company and click on the included link to
reset your password.
</p>
</div>
<!-- form -->
<form action="/">
<div class="mb-0 d-grid text-center">
<button class="btn btn-primary" type="submit"><i class="ri-home-4-line me-1"></i> Back to Home </button>
</div>
</form>
<!-- end form-->
</div>
<!-- Footer-->
<footer class="footer footer-alt">
<p class="text-muted">
<script>document.write(new Date().getFullYear())</script> © Polisplexity - Coderthemes.com
</p>
</footer>
</div> <!-- end .card-body -->
</div>
<!-- end auth-fluid-form-box-->
</div>
<!-- end auth-fluid-->
{% include "pxy_dashboard/partials/footer-script.html" %}
{% block extra_js %}
<!-- App js -->
<script src="{% static 'dashboard/js/app.min.js' %}"></script>
{% endblock extra_js %}

View File

@ -1,74 +1,74 @@
{% load static %}
{% include "pxy_dashboard/partials/main.html" %}
<head>
{% include "pxy_dashboard/partials/title-meta.html" with title="Confirm Email" %}
{% include "pxy_dashboard/partials/head-css.html" %}
</head>
<body class="authentication-bg">
{% include "pxy_dashboard/partials/background.html" %}
<div class="account-pages pt-2 pt-sm-5 pb-4 pb-sm-5 position-relative">
<div class="container">
<div class="row justify-content-center">
<div class="col-xxl-4 col-lg-5">
<div class="card">
<!-- Logo -->
<div class="card-header pt-4 text-center">
<div class="auth-brand mb-0">
<a href="/" class="logo-dark">
<span><img src="{% static 'dashboard/images/logo-dark.png' %}" alt="dark logo"
height="28"></span>
</a>
<a href="/" class="logo-light">
<span><img src="{% static 'dashboard/images/logo.png' %}" alt="logo" height="28"></span>
</a>
</div>
</div>
<div class="card-body p-4">
<div class="text-center m-auto">
<img src="{% static 'dashboard/images/svg/mail_sent.svg' %}" alt="mail sent image" height="64" />
<h4 class="text-dark-50 text-center mt-4 fw-bold">Please check your email</h4>
<p class="text-muted mb-4">
A email has been send to <b>youremail@domain.com</b>.
Please check for an email from company and click on the included link to
reset your password.
</p>
</div>
<form action="/">
<div class="mb-0 text-center">
<button class="btn btn-primary" type="submit"><i class="ri-home-4-line me-1"></i>
Back to Home</button>
</div>
</form>
</div> <!-- end card-body-->
</div>
<!-- end card-->
</div> <!-- end col -->
</div>
<!-- end row -->
</div>
<!-- end container -->
</div>
<!-- end page -->
<footer class="footer footer-alt">
<span class="text-white-50">
<script>document.write(new Date().getFullYear())</script> © Jidox - Coderthemes.com
</span>
</footer>
{% include "pxy_dashboard/partials/footer-script.html" %}
{% block extra_js %}
<!-- App js -->
<script src="{% static 'dashboard/js/app.min.js' %}"></script>
{% load static %}
{% include "pxy_dashboard/partials/main.html" %}
<head>
{% include "pxy_dashboard/partials/title-meta.html" with title="Confirm Email" %}
{% include "pxy_dashboard/partials/head-css.html" %}
</head>
<body class="authentication-bg">
{% include "pxy_dashboard/partials/background.html" %}
<div class="account-pages pt-2 pt-sm-5 pb-4 pb-sm-5 position-relative">
<div class="container">
<div class="row justify-content-center">
<div class="col-xxl-4 col-lg-5">
<div class="card">
<!-- Logo -->
<div class="card-header pt-4 text-center">
<div class="auth-brand mb-0">
<a href="/" class="logo-dark">
<span><img src="{% static 'dashboard/images/logo-dark.png' %}" alt="dark logo"
height="28"></span>
</a>
<a href="/" class="logo-light">
<span><img src="{% static 'dashboard/images/logo.png' %}" alt="logo" height="28"></span>
</a>
</div>
</div>
<div class="card-body p-4">
<div class="text-center m-auto">
<img src="{% static 'dashboard/images/svg/mail_sent.svg' %}" alt="mail sent image" height="64" />
<h4 class="text-dark-50 text-center mt-4 fw-bold">Please check your email</h4>
<p class="text-muted mb-4">
A email has been send to <b>youremail@domain.com</b>.
Please check for an email from company and click on the included link to
reset your password.
</p>
</div>
<form action="/">
<div class="mb-0 text-center">
<button class="btn btn-primary" type="submit"><i class="ri-home-4-line me-1"></i>
Back to Home</button>
</div>
</form>
</div> <!-- end card-body-->
</div>
<!-- end card-->
</div> <!-- end col -->
</div>
<!-- end row -->
</div>
<!-- end container -->
</div>
<!-- end page -->
<footer class="footer footer-alt">
<span class="text-white-50">
<script>document.write(new Date().getFullYear())</script> © Polisplexity - Coderthemes.com
</span>
</footer>
{% include "pxy_dashboard/partials/footer-script.html" %}
{% block extra_js %}
<!-- App js -->
<script src="{% static 'dashboard/js/app.min.js' %}"></script>
{% endblock extra_js %}

View File

@ -1,85 +1,85 @@
{% load static %}
{% include "pxy_dashboard/partials/main.html" %}
<head>
{% include "pxy_dashboard/partials/title-meta.html" with title="Lock Screen" %}
{% include "pxy_dashboard/partials/head-css.html" %}
</head>
<body class="authentication-bg">
{% include "pxy_dashboard/partials/background.html" %}
<div class="account-pages pt-2 pt-sm-5 pb-4 pb-sm-5 position-relative">
<div class="container">
<div class="row justify-content-center">
<div class="col-xxl-4 col-lg-5">
<div class="card">
<!-- Logo -->
<div class="card-header pt-4 text-center">
<div class="auth-brand mb-0">
<a href="/" class="logo-dark">
<span><img src="{% static 'dashboard/images/logo-dark.png' %}" alt="dark logo" height="28"></span>
</a>
<a href="/" class="logo-light">
<span><img src="{% static 'dashboard/images/logo.png' %}" alt="logo" height="28"></span>
</a>
</div>
</div>
<div class="card-body p-4">
<div class="text-center w-75 m-auto">
<img src="{% static 'dashboard/images/users/avatar-1.jpg' %}" height="64" alt="user-image"
class="rounded-circle shadow">
<h4 class="text-dark-50 text-center mt-3 fw-bold">Hi ! Tosha </h4>
<p class="text-muted mb-4">Enter your password to access the admin.</p>
</div>
<form action="#">
<div class="mb-3">
<label for="password" class="form-label">Password</label>
<input class="form-control" type="password" required="" id="password"
placeholder="Enter your password">
</div>
<div class="mb-0 text-center">
<button class="btn btn-primary" type="submit">Log In</button>
</div>
</form>
</div> <!-- end card-body-->
</div>
<!-- end card-->
<div class="row mt-3">
<div class="col-12 text-center">
<p class="text-white-50">Not you? return <a href="{% url 'login' %}"
class="text-white ms-1 link-offset-3 text-decoration-underline"><b>Sign In</b></a>
</p>
</div> <!-- end col -->
</div>
<!-- end row -->
</div> <!-- end col -->
</div>
<!-- end row -->
</div>
<!-- end container -->
</div>
<!-- end page -->
<footer class="footer footer-alt fw-medium">
<span class="text-white-50">
<script>document.write(new Date().getFullYear())</script> © Jidox - Coderthemes.com
</span>
</footer>
{% include "pxy_dashboard/partials/footer-script.html" %}
{% block extra_js %}
<!-- App js -->
<script src="{% static 'dashboard/js/app.min.js' %}"></script>
{% load static %}
{% include "pxy_dashboard/partials/main.html" %}
<head>
{% include "pxy_dashboard/partials/title-meta.html" with title="Lock Screen" %}
{% include "pxy_dashboard/partials/head-css.html" %}
</head>
<body class="authentication-bg">
{% include "pxy_dashboard/partials/background.html" %}
<div class="account-pages pt-2 pt-sm-5 pb-4 pb-sm-5 position-relative">
<div class="container">
<div class="row justify-content-center">
<div class="col-xxl-4 col-lg-5">
<div class="card">
<!-- Logo -->
<div class="card-header pt-4 text-center">
<div class="auth-brand mb-0">
<a href="/" class="logo-dark">
<span><img src="{% static 'dashboard/images/logo-dark.png' %}" alt="dark logo" height="28"></span>
</a>
<a href="/" class="logo-light">
<span><img src="{% static 'dashboard/images/logo.png' %}" alt="logo" height="28"></span>
</a>
</div>
</div>
<div class="card-body p-4">
<div class="text-center w-75 m-auto">
<img src="{% static 'dashboard/images/users/avatar-1.jpg' %}" height="64" alt="user-image"
class="rounded-circle shadow">
<h4 class="text-dark-50 text-center mt-3 fw-bold">Hi ! Tosha </h4>
<p class="text-muted mb-4">Enter your password to access the admin.</p>
</div>
<form action="#">
<div class="mb-3">
<label for="password" class="form-label">Password</label>
<input class="form-control" type="password" required="" id="password"
placeholder="Enter your password">
</div>
<div class="mb-0 text-center">
<button class="btn btn-primary" type="submit">Log In</button>
</div>
</form>
</div> <!-- end card-body-->
</div>
<!-- end card-->
<div class="row mt-3">
<div class="col-12 text-center">
<p class="text-white-50">Not you? return <a href="{% url 'login' %}"
class="text-white ms-1 link-offset-3 text-decoration-underline"><b>Sign In</b></a>
</p>
</div> <!-- end col -->
</div>
<!-- end row -->
</div> <!-- end col -->
</div>
<!-- end row -->
</div>
<!-- end container -->
</div>
<!-- end page -->
<footer class="footer footer-alt fw-medium">
<span class="text-white-50">
<script>document.write(new Date().getFullYear())</script> © Polisplexity - Coderthemes.com
</span>
</footer>
{% include "pxy_dashboard/partials/footer-script.html" %}
{% block extra_js %}
<!-- App js -->
<script src="{% static 'dashboard/js/app.min.js' %}"></script>
{% endblock extra_js %}

View File

@ -1,106 +1,106 @@
{% load static %}
{% include "pxy_dashboard/partials/main.html" %}
<head>
{% include "pxy_dashboard/partials/title-meta.html" with title="Log In" %}
{% include "pxy_dashboard/partials/head-css.html" %}
</head>
<body class="authentication-bg position-relative">
{% include "pxy_dashboard/partials/background.html" %}
<div class="account-pages pt-2 pt-sm-5 pb-4 pb-sm-5 position-relative">
<div class="container">
<div class="row justify-content-center">
<div class="col-xxl-4 col-lg-5">
<div class="card">
<!-- Logo -->
<div class="card-header pt-4 text-center">
<div class="auth-brand mb-0">
<a href="/" class="logo-dark">
<span><img src="{% static 'dashboard/images/logo-dark.png' %}" alt="dark logo" height="28"></span>
</a>
<a href="/" class="logo-light">
<span><img src="{% static 'dashboard/images/logo.png' %}" alt="logo" height="28"></span>
</a>
</div>
</div>
<div class="card-body p-4">
<div class="text-center w-75 m-auto">
<h4 class="text-dark-50 text-center pb-0 fw-bold">Sign In</h4>
<p class="text-muted mb-4">Enter your email address and password to access admin panel.
</p>
</div>
<form action="#">
<div class="mb-3">
<label for="emailaddress" class="form-label">Email address</label>
<input class="form-control" type="email" id="emailaddress" required=""
placeholder="Enter your email">
</div>
<div class="mb-3">
<a href="{% url 'recoverpw' %}" class="text-muted float-end fs-12">Forgot your
password?</a>
<label for="password" class="form-label">Password</label>
<div class="input-group input-group-merge">
<input type="password" id="password" class="form-control"
placeholder="Enter your password">
<div class="input-group-text" data-password="false">
<span class="password-eye"></span>
</div>
</div>
</div>
<div class="mb-3 mb-3">
<div class="form-check">
<input type="checkbox" class="form-check-input" id="checkbox-signin" checked>
<label class="form-check-label" for="checkbox-signin">Remember me</label>
</div>
</div>
<div class="mb-3 mb-0 text-center">
<button class="btn btn-primary" type="submit"> Log In </button>
</div>
</form>
</div> <!-- end card-body -->
</div>
<!-- end card -->
<div class="row mt-3">
<div class="col-12 text-center">
<p class="text-white-50">Don't have an account? <a href="{% url 'register' %}"
class="text-white ms-1 link-offset-3 text-decoration-underline"><b>Sign Up</b></a>
</p>
</div> <!-- end col -->
</div>
<!-- end row -->
</div> <!-- end col -->
</div>
<!-- end row -->
</div>
<!-- end container -->
</div>
<!-- end page -->
<footer class="footer footer-alt">
<span class="text-white-50">
<script>document.write(new Date().getFullYear())</script> © Jidox - Coderthemes.com
</span>
</footer>
{% include "pxy_dashboard/partials/footer-script.html" %}
{% block extra_js %}
<!-- App js -->
<script src="{% static 'dashboard/js/app.min.js' %}"></script>
{% load static %}
{% include "pxy_dashboard/partials/main.html" %}
<head>
{% include "pxy_dashboard/partials/title-meta.html" with title="Log In" %}
{% include "pxy_dashboard/partials/head-css.html" %}
</head>
<body class="authentication-bg position-relative">
{% include "pxy_dashboard/partials/background.html" %}
<div class="account-pages pt-2 pt-sm-5 pb-4 pb-sm-5 position-relative">
<div class="container">
<div class="row justify-content-center">
<div class="col-xxl-4 col-lg-5">
<div class="card">
<!-- Logo -->
<div class="card-header pt-4 text-center">
<div class="auth-brand mb-0">
<a href="/" class="logo-dark">
<span><img src="{% static 'dashboard/images/logo-dark.png' %}" alt="dark logo" height="28"></span>
</a>
<a href="/" class="logo-light">
<span><img src="{% static 'dashboard/images/logo.png' %}" alt="logo" height="28"></span>
</a>
</div>
</div>
<div class="card-body p-4">
<div class="text-center w-75 m-auto">
<h4 class="text-dark-50 text-center pb-0 fw-bold">Sign In</h4>
<p class="text-muted mb-4">Enter your email address and password to access admin panel.
</p>
</div>
<form action="#">
<div class="mb-3">
<label for="emailaddress" class="form-label">Email address</label>
<input class="form-control" type="email" id="emailaddress" required=""
placeholder="Enter your email">
</div>
<div class="mb-3">
<a href="{% url 'recoverpw' %}" class="text-muted float-end fs-12">Forgot your
password?</a>
<label for="password" class="form-label">Password</label>
<div class="input-group input-group-merge">
<input type="password" id="password" class="form-control"
placeholder="Enter your password">
<div class="input-group-text" data-password="false">
<span class="password-eye"></span>
</div>
</div>
</div>
<div class="mb-3 mb-3">
<div class="form-check">
<input type="checkbox" class="form-check-input" id="checkbox-signin" checked>
<label class="form-check-label" for="checkbox-signin">Remember me</label>
</div>
</div>
<div class="mb-3 mb-0 text-center">
<button class="btn btn-primary" type="submit"> Log In </button>
</div>
</form>
</div> <!-- end card-body -->
</div>
<!-- end card -->
<div class="row mt-3">
<div class="col-12 text-center">
<p class="text-white-50">Don't have an account? <a href="{% url 'register' %}"
class="text-white ms-1 link-offset-3 text-decoration-underline"><b>Sign Up</b></a>
</p>
</div> <!-- end col -->
</div>
<!-- end row -->
</div> <!-- end col -->
</div>
<!-- end row -->
</div>
<!-- end container -->
</div>
<!-- end page -->
<footer class="footer footer-alt">
<span class="text-white-50">
<script>document.write(new Date().getFullYear())</script> © Polisplexity - Coderthemes.com
</span>
</footer>
{% include "pxy_dashboard/partials/footer-script.html" %}
{% block extra_js %}
<!-- App js -->
<script src="{% static 'dashboard/js/app.min.js' %}"></script>
{% endblock extra_js %}

View File

@ -1,83 +1,83 @@
{% load static %}
{% include "pxy_dashboard/partials/main.html" %}
<head>
{% include "pxy_dashboard/partials/title-meta.html" with title="Logout" %}
{% include "pxy_dashboard/partials/head-css.html" %}
</head>
<body class="authentication-bg">
{% include "pxy_dashboard/partials/background.html" %}
<div class="account-pages pt-2 pt-sm-5 pb-4 pb-sm-5 position-relative">
<div class="container">
<div class="row justify-content-center">
<div class="col-xxl-4 col-lg-5">
<div class="card">
<!-- Logo -->
<div class="card-header pt-4 text-center">
<div class="auth-brand mb-0">
<a href="/" class="logo-dark">
<span><img src="{% static 'dashboard/images/logo-dark.png' %}" alt="dark logo" height="28"></span>
</a>
<a href="/" class="logo-light">
<span><img src="{% static 'dashboard/images/logo.png' %}" alt="logo" height="28"></span>
</a>
</div>
</div>
<div class="card-body p-4">
<div class="text-center w-75 m-auto">
<h4 class="text-dark-50 text-center mt-0 fw-bold">See You Again !</h4>
<p class="text-muted mb-4">You are now successfully sign out.</p>
</div>
<div class="logout-icon m-auto">
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 161.2 161.2" enable-background="new 0 0 161.2 161.2" xml:space="preserve">
<path class="path" fill="none" stroke="#0acf97" stroke-miterlimit="10" d="M425.9,52.1L425.9,52.1c-2.2-2.6-6-2.6-8.3-0.1l-42.7,46.2l-14.3-16.4
c-2.3-2.7-6.2-2.7-8.6-0.1c-1.9,2.1-2,5.6-0.1,7.7l17.6,20.3c0.2,0.3,0.4,0.6,0.6,0.9c1.8,2,4.4,2.5,6.6,1.4c0.7-0.3,1.4-0.8,2-1.5
c0.3-0.3,0.5-0.6,0.7-0.9l46.3-50.1C427.7,57.5,427.7,54.2,425.9,52.1z"/>
<circle class="path" fill="none" stroke="#0acf97" stroke-width="4" stroke-miterlimit="10" cx="80.6" cy="80.6" r="62.1"/>
<polyline class="path" fill="none" stroke="#0acf97" stroke-width="6" stroke-linecap="round" stroke-miterlimit="10" points="113,52.8
74.1,108.4 48.2,86.4 "/>
<circle class="spin" fill="none" stroke="#0acf97" stroke-width="4" stroke-miterlimit="10" stroke-dasharray="12.2175,12.2175" cx="80.6" cy="80.6" r="73.9"/>
</svg>
</div> <!-- end logout-icon-->
</div> <!-- end card-body-->
</div> <!-- end card-->
<div class="row mt-3">
<div class="col-12 text-center">
<p class="text-white-50">Back to <a href="{% url 'login' %}" class="text-white ms-1 link-offset-3 text-decoration-underline"><b>Log In</b></a></p>
</div> <!-- end col -->
</div>
<!-- end row -->
</div> <!-- end col -->
</div>
<!-- end row -->
</div>
<!-- end container -->
</div>
<!-- end page -->
<footer class="footer footer-alt">
<span class="text-white-50"><script>document.write(new Date().getFullYear())</script> © Jidox - Coderthemes.com</span>
</footer>
{% include "pxy_dashboard/partials/footer-script.html" %}
{% block extra_js %}
<!-- App js -->
<script src="{% static 'dashboard/js/app.min.js' %}"></script>
{% endblock extra_js %}
{% load static %}
{% include "pxy_dashboard/partials/main.html" %}
<head>
{% include "pxy_dashboard/partials/title-meta.html" with title="Logout" %}
{% include "pxy_dashboard/partials/head-css.html" %}
</head>
<body class="authentication-bg">
{% include "pxy_dashboard/partials/background.html" %}
<div class="account-pages pt-2 pt-sm-5 pb-4 pb-sm-5 position-relative">
<div class="container">
<div class="row justify-content-center">
<div class="col-xxl-4 col-lg-5">
<div class="card">
<!-- Logo -->
<div class="card-header pt-4 text-center">
<div class="auth-brand mb-0">
<a href="/" class="logo-dark">
<span><img src="{% static 'dashboard/images/logo-dark.png' %}" alt="dark logo" height="28"></span>
</a>
<a href="/" class="logo-light">
<span><img src="{% static 'dashboard/images/logo.png' %}" alt="logo" height="28"></span>
</a>
</div>
</div>
<div class="card-body p-4">
<div class="text-center w-75 m-auto">
<h4 class="text-dark-50 text-center mt-0 fw-bold">See You Again !</h4>
<p class="text-muted mb-4">You are now successfully sign out.</p>
</div>
<div class="logout-icon m-auto">
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 161.2 161.2" enable-background="new 0 0 161.2 161.2" xml:space="preserve">
<path class="path" fill="none" stroke="#0acf97" stroke-miterlimit="10" d="M425.9,52.1L425.9,52.1c-2.2-2.6-6-2.6-8.3-0.1l-42.7,46.2l-14.3-16.4
c-2.3-2.7-6.2-2.7-8.6-0.1c-1.9,2.1-2,5.6-0.1,7.7l17.6,20.3c0.2,0.3,0.4,0.6,0.6,0.9c1.8,2,4.4,2.5,6.6,1.4c0.7-0.3,1.4-0.8,2-1.5
c0.3-0.3,0.5-0.6,0.7-0.9l46.3-50.1C427.7,57.5,427.7,54.2,425.9,52.1z"/>
<circle class="path" fill="none" stroke="#0acf97" stroke-width="4" stroke-miterlimit="10" cx="80.6" cy="80.6" r="62.1"/>
<polyline class="path" fill="none" stroke="#0acf97" stroke-width="6" stroke-linecap="round" stroke-miterlimit="10" points="113,52.8
74.1,108.4 48.2,86.4 "/>
<circle class="spin" fill="none" stroke="#0acf97" stroke-width="4" stroke-miterlimit="10" stroke-dasharray="12.2175,12.2175" cx="80.6" cy="80.6" r="73.9"/>
</svg>
</div> <!-- end logout-icon-->
</div> <!-- end card-body-->
</div> <!-- end card-->
<div class="row mt-3">
<div class="col-12 text-center">
<p class="text-white-50">Back to <a href="{% url 'login' %}" class="text-white ms-1 link-offset-3 text-decoration-underline"><b>Log In</b></a></p>
</div> <!-- end col -->
</div>
<!-- end row -->
</div> <!-- end col -->
</div>
<!-- end row -->
</div>
<!-- end container -->
</div>
<!-- end page -->
<footer class="footer footer-alt">
<span class="text-white-50"><script>document.write(new Date().getFullYear())</script> © Polisplexity - Coderthemes.com</span>
</footer>
{% include "pxy_dashboard/partials/footer-script.html" %}
{% block extra_js %}
<!-- App js -->
<script src="{% static 'dashboard/js/app.min.js' %}"></script>
{% endblock extra_js %}

View File

@ -1,80 +1,80 @@
{% load static %}
{% include "pxy_dashboard/partials/main.html" %}
<head>
{% include "pxy_dashboard/partials/title-meta.html" with title="Recover Password" %}
{% include "pxy_dashboard/partials/head-css.html" %}
</head>
<body class="authentication-bg">
{% include "pxy_dashboard/partials/background.html" %}
<div class="account-pages pt-2 pt-sm-5 pb-4 pb-sm-5 position-relative">
<div class="container">
<div class="row justify-content-center">
<div class="col-xxl-4 col-lg-5">
<div class="card">
<!-- Logo -->
<div class="card-header pt-4 text-center">
<div class="auth-brand mb-0">
<a href="/" class="logo-dark">
<span><img src="{% static 'dashboard/images/logo-dark.png' %}" alt="dark logo" height="28"></span>
</a>
<a href="/" class="logo-light">
<span><img src="{% static 'dashboard/images/logo.png' %}" alt="logo" height="28"></span>
</a>
</div>
</div>
<div class="card-body p-4">
<div class="text-center w-75 m-auto">
<h4 class="text-dark-50 text-center mt-0 fw-bold">Reset Password</h4>
<p class="text-muted mb-4">Enter your email address and we'll send you an email with
instructions to reset your password.</p>
</div>
<form action="#">
<div class="mb-3">
<label for="emailaddress" class="form-label">Email address</label>
<input class="form-control" type="email" id="emailaddress" required=""
placeholder="Enter your email">
</div>
<div class="mb-0 text-center">
<button class="btn btn-primary" type="submit">Reset Password</button>
</div>
</form>
</div> <!-- end card-body-->
</div>
<!-- end card -->
<div class="row mt-3">
<div class="col-12 text-center">
<p class="text-white-50">Back to <a href="{% url 'login' %}"
class="text-white ms-1 link-offset-3 text-decoration-underline"><b>Log In</b></a>
</p>
</div> <!-- end col -->
</div>
<!-- end row -->
</div> <!-- end col -->
</div>
<!-- end row -->
</div>
<!-- end container -->
</div>
<!-- end page -->
<footer class="footer footer-alt">
<span class="text-white-50"><script>document.write(new Date().getFullYear())</script> © Jidox - Coderthemes.com</span>
</footer>
{% include "pxy_dashboard/partials/footer-script.html" %}
{% block extra_js %}
<!-- App js -->
<script src="{% static 'dashboard/js/app.min.js' %}"></script>
{% load static %}
{% include "pxy_dashboard/partials/main.html" %}
<head>
{% include "pxy_dashboard/partials/title-meta.html" with title="Recover Password" %}
{% include "pxy_dashboard/partials/head-css.html" %}
</head>
<body class="authentication-bg">
{% include "pxy_dashboard/partials/background.html" %}
<div class="account-pages pt-2 pt-sm-5 pb-4 pb-sm-5 position-relative">
<div class="container">
<div class="row justify-content-center">
<div class="col-xxl-4 col-lg-5">
<div class="card">
<!-- Logo -->
<div class="card-header pt-4 text-center">
<div class="auth-brand mb-0">
<a href="/" class="logo-dark">
<span><img src="{% static 'dashboard/images/logo-dark.png' %}" alt="dark logo" height="28"></span>
</a>
<a href="/" class="logo-light">
<span><img src="{% static 'dashboard/images/logo.png' %}" alt="logo" height="28"></span>
</a>
</div>
</div>
<div class="card-body p-4">
<div class="text-center w-75 m-auto">
<h4 class="text-dark-50 text-center mt-0 fw-bold">Reset Password</h4>
<p class="text-muted mb-4">Enter your email address and we'll send you an email with
instructions to reset your password.</p>
</div>
<form action="#">
<div class="mb-3">
<label for="emailaddress" class="form-label">Email address</label>
<input class="form-control" type="email" id="emailaddress" required=""
placeholder="Enter your email">
</div>
<div class="mb-0 text-center">
<button class="btn btn-primary" type="submit">Reset Password</button>
</div>
</form>
</div> <!-- end card-body-->
</div>
<!-- end card -->
<div class="row mt-3">
<div class="col-12 text-center">
<p class="text-white-50">Back to <a href="{% url 'login' %}"
class="text-white ms-1 link-offset-3 text-decoration-underline"><b>Log In</b></a>
</p>
</div> <!-- end col -->
</div>
<!-- end row -->
</div> <!-- end col -->
</div>
<!-- end row -->
</div>
<!-- end container -->
</div>
<!-- end page -->
<footer class="footer footer-alt">
<span class="text-white-50"><script>document.write(new Date().getFullYear())</script> © Polisplexity - Coderthemes.com</span>
</footer>
{% include "pxy_dashboard/partials/footer-script.html" %}
{% block extra_js %}
<!-- App js -->
<script src="{% static 'dashboard/js/app.min.js' %}"></script>
{% endblock extra_js %}

View File

@ -1,103 +1,103 @@
{% load static %}
{% include "pxy_dashboard/partials/main.html" %}
<head>
{% include "pxy_dashboard/partials/title-meta.html" with title="Register" %}
{% include "pxy_dashboard/partials/head-css.html" %}
</head>
<body class="authentication-bg">
{% include "pxy_dashboard/partials/background.html" %}
<div class="account-pages pt-2 pt-sm-5 pb-4 pb-sm-5 position-relative">
<div class="container">
<div class="row justify-content-center">
<div class="col-xxl-4 col-lg-5">
<div class="card">
<!-- Logo-->
<div class="card-header pt-4 text-center">
<div class="auth-brand mb-0">
<a href="/" class="logo-dark">
<span><img src="{% static 'dashboard/images/logo-dark.png' %}" alt="dark logo" height="28"></span>
</a>
<a href="/" class="logo-light">
<span><img src="{% static 'dashboard/images/logo.png' %}" alt="logo" height="28"></span>
</a>
</div>
</div>
<div class="card-body p-4">
<div class="text-center w-75 m-auto">
<h4 class="text-dark-50 text-center mt-0 fw-bold">Free Sign Up</h4>
<p class="text-muted mb-4">Don't have an account? Create your account, it takes less than a minute </p>
</div>
<form action="#">
<div class="mb-3">
<label for="fullname" class="form-label">Full Name</label>
<input class="form-control" type="text" id="fullname" placeholder="Enter your name" required>
</div>
<div class="mb-3">
<label for="emailaddress" class="form-label">Email address</label>
<input class="form-control" type="email" id="emailaddress" required placeholder="Enter your email">
</div>
<div class="mb-3">
<label for="password" class="form-label">Password</label>
<div class="input-group input-group-merge">
<input type="password" id="password" class="form-control" placeholder="Enter your password">
<div class="input-group-text" data-password="false">
<span class="password-eye"></span>
</div>
</div>
</div>
<div class="mb-3">
<div class="form-check">
<input type="checkbox" class="form-check-input" id="checkbox-signup">
<label class="form-check-label" for="checkbox-signup">I accept <a href="#" class="text-muted">Terms and Conditions</a></label>
</div>
</div>
<div class="mb-3 text-center">
<button class="btn btn-primary" type="submit"> Sign Up </button>
</div>
</form>
</div> <!-- end card-body -->
</div>
<!-- end card -->
<div class="row mt-3">
<div class="col-12 text-center">
<p class="text-white-50">Already have account? <a href="{% url 'login' %}" class="text-white ms-1 link-offset-3 text-decoration-underline"><b>Log In</b></a></p>
</div> <!-- end col-->
</div>
<!-- end row -->
</div> <!-- end col -->
</div>
<!-- end row -->
</div>
<!-- end container -->
</div>
<!-- end page -->
<footer class="footer footer-alt">
<span class="text-white-50"><script>document.write(new Date().getFullYear())</script> © Jidox - Coderthemes.com</span>
</footer>
{% include "pxy_dashboard/partials/footer-script.html" %}
{% block extra_js %}
<!-- App js -->
<script src="{% static 'dashboard/js/app.min.js' %}"></script>
{% endblock extra_js %}
{% load static %}
{% include "pxy_dashboard/partials/main.html" %}
<head>
{% include "pxy_dashboard/partials/title-meta.html" with title="Register" %}
{% include "pxy_dashboard/partials/head-css.html" %}
</head>
<body class="authentication-bg">
{% include "pxy_dashboard/partials/background.html" %}
<div class="account-pages pt-2 pt-sm-5 pb-4 pb-sm-5 position-relative">
<div class="container">
<div class="row justify-content-center">
<div class="col-xxl-4 col-lg-5">
<div class="card">
<!-- Logo-->
<div class="card-header pt-4 text-center">
<div class="auth-brand mb-0">
<a href="/" class="logo-dark">
<span><img src="{% static 'dashboard/images/logo-dark.png' %}" alt="dark logo" height="28"></span>
</a>
<a href="/" class="logo-light">
<span><img src="{% static 'dashboard/images/logo.png' %}" alt="logo" height="28"></span>
</a>
</div>
</div>
<div class="card-body p-4">
<div class="text-center w-75 m-auto">
<h4 class="text-dark-50 text-center mt-0 fw-bold">Free Sign Up</h4>
<p class="text-muted mb-4">Don't have an account? Create your account, it takes less than a minute </p>
</div>
<form action="#">
<div class="mb-3">
<label for="fullname" class="form-label">Full Name</label>
<input class="form-control" type="text" id="fullname" placeholder="Enter your name" required>
</div>
<div class="mb-3">
<label for="emailaddress" class="form-label">Email address</label>
<input class="form-control" type="email" id="emailaddress" required placeholder="Enter your email">
</div>
<div class="mb-3">
<label for="password" class="form-label">Password</label>
<div class="input-group input-group-merge">
<input type="password" id="password" class="form-control" placeholder="Enter your password">
<div class="input-group-text" data-password="false">
<span class="password-eye"></span>
</div>
</div>
</div>
<div class="mb-3">
<div class="form-check">
<input type="checkbox" class="form-check-input" id="checkbox-signup">
<label class="form-check-label" for="checkbox-signup">I accept <a href="#" class="text-muted">Terms and Conditions</a></label>
</div>
</div>
<div class="mb-3 text-center">
<button class="btn btn-primary" type="submit"> Sign Up </button>
</div>
</form>
</div> <!-- end card-body -->
</div>
<!-- end card -->
<div class="row mt-3">
<div class="col-12 text-center">
<p class="text-white-50">Already have account? <a href="{% url 'login' %}" class="text-white ms-1 link-offset-3 text-decoration-underline"><b>Log In</b></a></p>
</div> <!-- end col-->
</div>
<!-- end row -->
</div> <!-- end col -->
</div>
<!-- end row -->
</div>
<!-- end container -->
</div>
<!-- end page -->
<footer class="footer footer-alt">
<span class="text-white-50"><script>document.write(new Date().getFullYear())</script> © Polisplexity - Coderthemes.com</span>
</footer>
{% include "pxy_dashboard/partials/footer-script.html" %}
{% block extra_js %}
<!-- App js -->
<script src="{% static 'dashboard/js/app.min.js' %}"></script>
{% endblock extra_js %}

View File

@ -1,68 +1,68 @@
{% load static %}
{% include "pxy_dashboard/partials/main.html" %}
<head>
{% include "pxy_dashboard/partials/title-meta.html" with title="Error 500" %}
{% include "pxy_dashboard/partials/head-css.html" %}
</head>
<body class="authentication-bg">
{% include "pxy_dashboard/partials/background.html" %}
<div class="account-pages pt-2 pt-sm-5 pb-4 pb-sm-5 position-relative">
<div class="container">
<div class="row justify-content-center">
<div class="col-xxl-4 col-lg-5">
<div class="card">
<!-- Logo -->
<div class="card-header pt-4 text-center">
<div class="auth-brand mb-0">
<a href="/" class="logo-dark">
<span><img src="{% static 'dashboard/images/logo-dark.png' %}" alt="dark logo" height="28"></span>
</a>
<a href="/" class="logo-light">
<span><img src="{% static 'dashboard/images/logo.png' %}" alt="logo" height="28"></span>
</a>
</div>
</div>
<div class="card-body p-4">
<div class="text-center">
<img src="{% static 'dashboard/images/svg/startman.svg' %}" height="120" alt="File not found Image">
<h1 class="text-error mt-4">500</h1>
<h4 class="text-uppercase text-danger mt-3">Internal Server Error</h4>
<p class="text-muted mt-3">Why not try refreshing your page? or you can contact <a href="" class="text-muted"><b>Support</b></a></p>
<a class="btn btn-info mt-3" href="/"><i class="ri-home-4-line me-1"></i> Return Home</a>
</div>
</div> <!-- end card-body-->
</div>
<!-- end card-->
</div> <!-- end col -->
</div>
<!-- end row -->
</div>
<!-- end container -->
</div>
<!-- end page -->
<footer class="footer footer-alt">
<span class="text-white-50"><script>document.write(new Date().getFullYear())</script> © Jidox - Coderthemes.com</span>
</footer>
{% include "pxy_dashboard/partials/footer-script.html" %}
{% block extra_js %}
<!-- App js -->
<script src="{% static 'dashboard/js/app.min.js' %}"></script>
{% endblock extra_js %}
{% load static %}
{% include "pxy_dashboard/partials/main.html" %}
<head>
{% include "pxy_dashboard/partials/title-meta.html" with title="Error 500" %}
{% include "pxy_dashboard/partials/head-css.html" %}
</head>
<body class="authentication-bg">
{% include "pxy_dashboard/partials/background.html" %}
<div class="account-pages pt-2 pt-sm-5 pb-4 pb-sm-5 position-relative">
<div class="container">
<div class="row justify-content-center">
<div class="col-xxl-4 col-lg-5">
<div class="card">
<!-- Logo -->
<div class="card-header pt-4 text-center">
<div class="auth-brand mb-0">
<a href="/" class="logo-dark">
<span><img src="{% static 'dashboard/images/logo-dark.png' %}" alt="dark logo" height="28"></span>
</a>
<a href="/" class="logo-light">
<span><img src="{% static 'dashboard/images/logo.png' %}" alt="logo" height="28"></span>
</a>
</div>
</div>
<div class="card-body p-4">
<div class="text-center">
<img src="{% static 'dashboard/images/svg/startman.svg' %}" height="120" alt="File not found Image">
<h1 class="text-error mt-4">500</h1>
<h4 class="text-uppercase text-danger mt-3">Internal Server Error</h4>
<p class="text-muted mt-3">Why not try refreshing your page? or you can contact <a href="" class="text-muted"><b>Support</b></a></p>
<a class="btn btn-info mt-3" href="/"><i class="ri-home-4-line me-1"></i> Return Home</a>
</div>
</div> <!-- end card-body-->
</div>
<!-- end card-->
</div> <!-- end col -->
</div>
<!-- end row -->
</div>
<!-- end container -->
</div>
<!-- end page -->
<footer class="footer footer-alt">
<span class="text-white-50"><script>document.write(new Date().getFullYear())</script> © Polisplexity - Coderthemes.com</span>
</footer>
{% include "pxy_dashboard/partials/footer-script.html" %}
{% block extra_js %}
<!-- App js -->
<script src="{% static 'dashboard/js/app.min.js' %}"></script>
{% endblock extra_js %}

View File

@ -1,77 +1,77 @@
{% load static %}
{% include "pxy_dashboard/partials/main.html" %}
{% include "pxy_dashboard/partials/head-css.html" %}
<body class="authentication-bg position-relative">
{% include "pxy_dashboard/partials/background.html" %}
<div class="account-pages pt-2 pt-sm-5 pb-4 pb-sm-5 position-relative">
<div class="container">
<div class="row justify-content-center">
<div class="col-xxl-10">
<div class="card">
<div class="card-body p-4">
<div class="text-center">
<img src="{% static 'dashboard/images/svg/maintenance.svg' %}" height="150"
alt="File not found Image">
<h3 class="mt-4">Site is Under Maintenance</h3>
<p class="text-muted">We're making the system more awesome. We'll be back shortly.</p>
<div class="row mt-5">
<div class="col-md-4">
<div class="text-center mt-3 ps-1 pe-1">
<i
class="ri-vip-diamond-line bg-primary maintenance-icon text-white mb-4"></i>
<h5 class="text-uppercase">Why is the Site Down?</h5>
<p class="text-muted">There are many variations of passages of Lorem Ipsum
available, but the majority have suffered alteration.</p>
</div>
</div> <!-- end col-->
<div class="col-md-4">
<div class="text-center mt-3 ps-1 pe-1">
<i class="ri-time-line bg-primary maintenance-icon text-white mb-4"></i>
<h5 class="text-uppercase">What is the Downtime?</h5>
<p class="text-muted">Contrary to popular belief, Lorem Ipsum is not simply
random text. It has roots in a piece of classical but the majority.</p>
</div>
</div> <!-- end col-->
<div class="col-md-4">
<div class="text-center mt-3 ps-1 pe-1">
<i class="ri-question-mark bg-primary maintenance-icon text-white mb-4"></i>
<h5 class="text-uppercase">Do you need Support?</h5>
<p class="text-muted">If you are going to use a passage of Lorem Ipsum, you
need to be sure there isn't anything embar.. <a href="mailto:#"
class="text-muted fw-bold">no-reply@domain.com</a></p>
</div>
</div> <!-- end col-->
</div> <!-- end row-->
</div> <!-- end /.text-center-->
</div> <!-- end card-body -->
</div>
<!-- end card -->
</div> <!-- end col -->
</div>
<!-- end row -->
</div>
<!-- end container -->
</div>
<!-- end page -->
<footer class="footer footer-alt">
<span class="text-white-50">
<script>document.write(new Date().getFullYear())</script> © Jidox - Coderthemes.com
</span>
</footer>
</body>
{% include "pxy_dashboard/partials/footer-script.html" %}
{% block extra_js %}
<!-- App js -->
<script src="{% static 'dashboard/js/app.min.js' %}"></script>
{% load static %}
{% include "pxy_dashboard/partials/main.html" %}
{% include "pxy_dashboard/partials/head-css.html" %}
<body class="authentication-bg position-relative">
{% include "pxy_dashboard/partials/background.html" %}
<div class="account-pages pt-2 pt-sm-5 pb-4 pb-sm-5 position-relative">
<div class="container">
<div class="row justify-content-center">
<div class="col-xxl-10">
<div class="card">
<div class="card-body p-4">
<div class="text-center">
<img src="{% static 'dashboard/images/svg/maintenance.svg' %}" height="150"
alt="File not found Image">
<h3 class="mt-4">Site is Under Maintenance</h3>
<p class="text-muted">We're making the system more awesome. We'll be back shortly.</p>
<div class="row mt-5">
<div class="col-md-4">
<div class="text-center mt-3 ps-1 pe-1">
<i
class="ri-vip-diamond-line bg-primary maintenance-icon text-white mb-4"></i>
<h5 class="text-uppercase">Why is the Site Down?</h5>
<p class="text-muted">There are many variations of passages of Lorem Ipsum
available, but the majority have suffered alteration.</p>
</div>
</div> <!-- end col-->
<div class="col-md-4">
<div class="text-center mt-3 ps-1 pe-1">
<i class="ri-time-line bg-primary maintenance-icon text-white mb-4"></i>
<h5 class="text-uppercase">What is the Downtime?</h5>
<p class="text-muted">Contrary to popular belief, Lorem Ipsum is not simply
random text. It has roots in a piece of classical but the majority.</p>
</div>
</div> <!-- end col-->
<div class="col-md-4">
<div class="text-center mt-3 ps-1 pe-1">
<i class="ri-question-mark bg-primary maintenance-icon text-white mb-4"></i>
<h5 class="text-uppercase">Do you need Support?</h5>
<p class="text-muted">If you are going to use a passage of Lorem Ipsum, you
need to be sure there isn't anything embar.. <a href="mailto:#"
class="text-muted fw-bold">no-reply@domain.com</a></p>
</div>
</div> <!-- end col-->
</div> <!-- end row-->
</div> <!-- end /.text-center-->
</div> <!-- end card-body -->
</div>
<!-- end card -->
</div> <!-- end col -->
</div>
<!-- end row -->
</div>
<!-- end container -->
</div>
<!-- end page -->
<footer class="footer footer-alt">
<span class="text-white-50">
<script>document.write(new Date().getFullYear())</script> © Polisplexity - Coderthemes.com
</span>
</footer>
</body>
{% include "pxy_dashboard/partials/footer-script.html" %}
{% block extra_js %}
<!-- App js -->
<script src="{% static 'dashboard/js/app.min.js' %}"></script>
{% endblock extra_js %}

View File

@ -1,14 +1,14 @@
<!-- start page title -->
<div class="row">
<div class="col-12">
<div class="page-title-box justify-content-between d-flex align-items-md-center flex-md-row flex-column">
<h4 class="page-title">{{title}}</h4>
<ol class="breadcrumb m-0">
<li class="breadcrumb-item"><a href="javascript: void(0);">Jidox</a></li>
<li class="breadcrumb-item"><a href="javascript: void(0);">{{pagetitle}}</a></li>
<li class="breadcrumb-item active">{{title}}</li>
</ol>
</div>
</div>
</div>
<!-- end page title -->
<!-- start page title -->
<div class="row">
<div class="col-12">
<div class="page-title-box justify-content-between d-flex align-items-md-center flex-md-row flex-column">
<h4 class="page-title">{{title}}</h4>
<ol class="breadcrumb m-0">
<li class="breadcrumb-item"><a href="javascript: void(0);">Polisplexity</a></li>
<li class="breadcrumb-item"><a href="javascript: void(0);">{{pagetitle}}</a></li>
<li class="breadcrumb-item active">{{title}}</li>
</ol>
</div>
</div>
</div>
<!-- end page title -->

View File

@ -43,7 +43,7 @@
<footer class="footer footer-alt">
<span class="text-white-50">
<script>document.write(new Date().getFullYear())</script> © Jidox - Coderthemes.com
<script>document.write(new Date().getFullYear())</script> © Polisplexity - Coderthemes.com
</span>
</footer>
{% endblock %}