This commit is contained in:
parent
b9faf91831
commit
ebd426a304
@ -1,97 +1,97 @@
|
|||||||
{% extends "pxy_dashboard/account/base.html" %}
|
{% extends "pxy_dashboard/account/base.html" %}
|
||||||
{% load static crispy_forms_tags socialaccount %}
|
{% load static crispy_forms_tags socialaccount %}
|
||||||
|
|
||||||
|
|
||||||
{% block title %}Log In{% endblock title %}
|
{% block title %}Log In{% endblock title %}
|
||||||
|
|
||||||
{% block body_attr %}
|
{% block body_attr %}
|
||||||
class="authentication-bg position-relative"
|
class="authentication-bg position-relative"
|
||||||
{% endblock %}
|
{% endblock %}
|
||||||
|
|
||||||
{% block page_content %}
|
{% block page_content %}
|
||||||
{% include "pxy_dashboard/partials/background.html" %}
|
{% include "pxy_dashboard/partials/background.html" %}
|
||||||
|
|
||||||
<div class="account-pages pt-2 pt-sm-5 pb-4 pb-sm-5 position-relative">
|
<div class="account-pages pt-2 pt-sm-5 pb-4 pb-sm-5 position-relative">
|
||||||
<div class="container">
|
<div class="container">
|
||||||
<div class="row justify-content-center">
|
<div class="row justify-content-center">
|
||||||
<div class="col-xxl-4 col-lg-5">
|
<div class="col-xxl-4 col-lg-5">
|
||||||
<div class="card">
|
<div class="card">
|
||||||
|
|
||||||
<!-- Logo -->
|
<!-- Logo -->
|
||||||
<div class="card-header pt-4 text-center">
|
<div class="card-header pt-4 text-center">
|
||||||
<div class="auth-brand mb-0">
|
<div class="auth-brand mb-0">
|
||||||
<a href="{% url 'index' %}" class="logo-dark">
|
<a href="{% url 'index' %}" class="logo-dark">
|
||||||
<span><img src="{% static 'dashboard/images/logo-dark.png' %}" alt="dark logo" height="28"></span>
|
<span><img src="{% static 'dashboard/images/logo-dark.png' %}" alt="dark logo" height="28"></span>
|
||||||
</a>
|
</a>
|
||||||
<a href="{% url 'index' %}" class="logo-light">
|
<a href="{% url 'index' %}" class="logo-light">
|
||||||
<span><img src="{% static 'dashboard/images/logo.png' %}" alt="logo" height="28"></span>
|
<span><img src="{% static 'dashboard/images/logo.png' %}" alt="logo" height="28"></span>
|
||||||
</a>
|
</a>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="card-body p-4">
|
<div class="card-body p-4">
|
||||||
|
|
||||||
<div class="text-center w-75 m-auto">
|
<div class="text-center w-75 m-auto">
|
||||||
<h4 class="text-dark-50 text-center pb-0 fw-bold">Sign In</h4>
|
<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 class="text-muted mb-4">Enter your email address and password to access admin panel.
|
||||||
</p>
|
</p>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
{% load socialaccount %}
|
{% load socialaccount %}
|
||||||
|
|
||||||
{% if True %}
|
{% if True %}
|
||||||
<div class="text-center my-3">
|
<div class="text-center my-3">
|
||||||
<a href="{% provider_login_url 'github' %}" class="btn btn-dark">
|
<a href="{% provider_login_url 'github' %}" class="btn btn-dark">
|
||||||
<i class="mdi mdi-github me-1"></i> Sign in with GitHub
|
<i class="mdi mdi-github me-1"></i> Sign in with GitHub
|
||||||
</a>
|
</a>
|
||||||
</div>
|
</div>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
|
||||||
<form method="POST" action="{% url 'account_login' %}" novalidate>
|
<form method="POST" action="{% url 'account_login' %}" novalidate>
|
||||||
{% csrf_token %}
|
{% csrf_token %}
|
||||||
|
|
||||||
{{ form|crispy }}
|
{{ form|crispy }}
|
||||||
{% if redirect_field_value %}
|
{% if redirect_field_value %}
|
||||||
<input type="hidden" name="{{ redirect_field_name }}"
|
<input type="hidden" name="{{ redirect_field_name }}"
|
||||||
value="{{ redirect_field_value }}"/>
|
value="{{ redirect_field_value }}"/>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
|
||||||
<div class="mb-3 mb-0 text-center">
|
<div class="mb-3 mb-0 text-center">
|
||||||
<button class="btn btn-primary" type="submit"> Log In </button>
|
<button class="btn btn-primary" type="submit"> Log In </button>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
</form>
|
</form>
|
||||||
</div> <!-- end card-body -->
|
</div> <!-- end card-body -->
|
||||||
</div>
|
</div>
|
||||||
<!-- end card -->
|
<!-- end card -->
|
||||||
|
|
||||||
<div class="row mt-3">
|
<div class="row mt-3">
|
||||||
<div class="col-12 text-center">
|
<div class="col-12 text-center">
|
||||||
<p class="text-white-50">Don't have an account? <a href="{{ signup_url }}"
|
<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>
|
class="text-white ms-1 link-offset-3 text-decoration-underline"><b>Sign Up</b></a>
|
||||||
</p>
|
</p>
|
||||||
</div> <!-- end col -->
|
</div> <!-- end col -->
|
||||||
</div>
|
</div>
|
||||||
<!-- end row -->
|
<!-- end row -->
|
||||||
|
|
||||||
</div> <!-- end col -->
|
</div> <!-- end col -->
|
||||||
</div>
|
</div>
|
||||||
<!-- end row -->
|
<!-- end row -->
|
||||||
</div>
|
</div>
|
||||||
<!-- end container -->
|
<!-- end container -->
|
||||||
</div>
|
</div>
|
||||||
<!-- end page -->
|
<!-- end page -->
|
||||||
|
|
||||||
<footer class="footer footer-alt">
|
<footer class="footer footer-alt">
|
||||||
<span class="text-white-50">
|
<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>
|
</span>
|
||||||
</footer>
|
</footer>
|
||||||
{% endblock %}
|
{% endblock %}
|
||||||
|
|
||||||
{% block extra_js %}
|
{% block extra_js %}
|
||||||
<script>
|
<script>
|
||||||
document.getElementById('id_login').value = "test@test.com"
|
document.getElementById('id_login').value = "test@test.com"
|
||||||
document.getElementById('id_password').value = "password"
|
document.getElementById('id_password').value = "password"
|
||||||
</script>
|
</script>
|
||||||
{% endblock %}
|
{% endblock %}
|
||||||
|
|||||||
@ -1,76 +1,76 @@
|
|||||||
{% extends "pxy_dashboard/account/base.html" %}
|
{% extends "pxy_dashboard/account/base.html" %}
|
||||||
{% load static i18n crispy_forms_tags %}
|
{% load static i18n crispy_forms_tags %}
|
||||||
|
|
||||||
{% block title %}{% trans "Recover Password" %}{% endblock title %}
|
{% block title %}{% trans "Recover Password" %}{% endblock title %}
|
||||||
|
|
||||||
{% block body_attr %}
|
{% block body_attr %}
|
||||||
class="authentication-bg"
|
class="authentication-bg"
|
||||||
{% endblock %}
|
{% endblock %}
|
||||||
|
|
||||||
{% block page_content %}
|
{% block page_content %}
|
||||||
{% include "pxy_dashboard/partials/background.html" %}
|
{% include "pxy_dashboard/partials/background.html" %}
|
||||||
|
|
||||||
<div class="account-pages pt-2 pt-sm-5 pb-4 pb-sm-5 position-relative">
|
<div class="account-pages pt-2 pt-sm-5 pb-4 pb-sm-5 position-relative">
|
||||||
<div class="container">
|
<div class="container">
|
||||||
<div class="row justify-content-center">
|
<div class="row justify-content-center">
|
||||||
<div class="col-xxl-4 col-lg-5">
|
<div class="col-xxl-4 col-lg-5">
|
||||||
<div class="card">
|
<div class="card">
|
||||||
<!-- Logo -->
|
<!-- Logo -->
|
||||||
<div class="card-header pt-4 text-center">
|
<div class="card-header pt-4 text-center">
|
||||||
<div class="auth-brand mb-0">
|
<div class="auth-brand mb-0">
|
||||||
<a href="{% url 'index' %}" class="logo-dark">
|
<a href="{% url 'index' %}" class="logo-dark">
|
||||||
<span><img src="{% static 'dashboard/images/logo-dark.png' %}" alt="dark logo"
|
<span><img src="{% static 'dashboard/images/logo-dark.png' %}" alt="dark logo"
|
||||||
height="28"></span>
|
height="28"></span>
|
||||||
</a>
|
</a>
|
||||||
<a href="{% url 'index' %}" class="logo-light">
|
<a href="{% url 'index' %}" class="logo-light">
|
||||||
<span><img src="{% static 'dashboard/images/logo.png' %}" alt="logo" height="28"></span>
|
<span><img src="{% static 'dashboard/images/logo.png' %}" alt="logo" height="28"></span>
|
||||||
</a>
|
</a>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="card-body p-4">
|
<div class="card-body p-4">
|
||||||
|
|
||||||
<div class="text-center w-75 m-auto">
|
<div class="text-center w-75 m-auto">
|
||||||
<h4 class="text-dark-50 text-center mt-0 fw-bold">Reset Password</h4>
|
<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
|
<p class="text-muted mb-4">Enter your email address and we'll send you an email with
|
||||||
instructions to reset your password.</p>
|
instructions to reset your password.</p>
|
||||||
</div>
|
</div>
|
||||||
{% if user.is_authenticated %}
|
{% if user.is_authenticated %}
|
||||||
{% include "account/snippets/already_logged_in.html" %}
|
{% include "account/snippets/already_logged_in.html" %}
|
||||||
{% endif %}
|
{% endif %}
|
||||||
<form method="POST" action="{% url 'account_reset_password' %}" class="password_reset"
|
<form method="POST" action="{% url 'account_reset_password' %}" class="password_reset"
|
||||||
novalidate>
|
novalidate>
|
||||||
{% csrf_token %}
|
{% csrf_token %}
|
||||||
{{ form|crispy }}
|
{{ form|crispy }}
|
||||||
|
|
||||||
<div class="mb-0 text-center">
|
<div class="mb-0 text-center">
|
||||||
<button class="btn btn-primary" type="submit">{% trans 'Reset Password' %}</button>
|
<button class="btn btn-primary" type="submit">{% trans 'Reset Password' %}</button>
|
||||||
</div>
|
</div>
|
||||||
</form>
|
</form>
|
||||||
</div> <!-- end card-body-->
|
</div> <!-- end card-body-->
|
||||||
</div>
|
</div>
|
||||||
<!-- end card -->
|
<!-- end card -->
|
||||||
|
|
||||||
<div class="row mt-3">
|
<div class="row mt-3">
|
||||||
<div class="col-12 text-center">
|
<div class="col-12 text-center">
|
||||||
<p class="text-white-50">Back to <a href="{% url 'account_login' %}"
|
<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
|
class="text-white ms-1 link-offset-3 text-decoration-underline"><b>Log
|
||||||
In</b></a>
|
In</b></a>
|
||||||
</p>
|
</p>
|
||||||
</div> <!-- end col -->
|
</div> <!-- end col -->
|
||||||
</div>
|
</div>
|
||||||
<!-- end row -->
|
<!-- end row -->
|
||||||
|
|
||||||
</div> <!-- end col -->
|
</div> <!-- end col -->
|
||||||
</div>
|
</div>
|
||||||
<!-- end row -->
|
<!-- end row -->
|
||||||
</div>
|
</div>
|
||||||
<!-- end container -->
|
<!-- end container -->
|
||||||
</div>
|
</div>
|
||||||
<!-- end page -->
|
<!-- end page -->
|
||||||
|
|
||||||
<footer class="footer footer-alt">
|
<footer class="footer footer-alt">
|
||||||
<span class="text-white-50"><script>document.write(new Date().getFullYear())</script> © Jidox - Coderthemes.com</span>
|
<span class="text-white-50"><script>document.write(new Date().getFullYear())</script> © Polisplexity - Coderthemes.com</span>
|
||||||
</footer>
|
</footer>
|
||||||
|
|
||||||
{% endblock %}
|
{% endblock %}
|
||||||
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
@ -1,109 +1,109 @@
|
|||||||
{% load static %}
|
{% load static %}
|
||||||
|
|
||||||
{% include "pxy_dashboard/partials/main.html" %}
|
{% include "pxy_dashboard/partials/main.html" %}
|
||||||
|
|
||||||
<head>
|
<head>
|
||||||
{% include "pxy_dashboard/partials/title-meta.html" with title="Confirm Email" %}
|
{% include "pxy_dashboard/partials/title-meta.html" with title="Confirm Email" %}
|
||||||
|
|
||||||
{% include "pxy_dashboard/partials/head-css.html" %}
|
{% include "pxy_dashboard/partials/head-css.html" %}
|
||||||
</head>
|
</head>
|
||||||
|
|
||||||
<body class="authentication-bg pb-0">
|
<body class="authentication-bg pb-0">
|
||||||
|
|
||||||
|
|
||||||
<div class="auth-fluid">
|
<div class="auth-fluid">
|
||||||
|
|
||||||
<!-- Auth fluid right content -->
|
<!-- Auth fluid right content -->
|
||||||
<div class="auth-fluid-right text-center">
|
<div class="auth-fluid-right text-center">
|
||||||
<div class="auth-user-testimonial">
|
<div class="auth-user-testimonial">
|
||||||
<div id="carouselExampleFade" class="carousel slide carousel-fade" data-bs-ride="carousel">
|
<div id="carouselExampleFade" class="carousel slide carousel-fade" data-bs-ride="carousel">
|
||||||
<div class="carousel-inner">
|
<div class="carousel-inner">
|
||||||
<div class="carousel-item active">
|
<div class="carousel-item active">
|
||||||
<h2 class="mb-3">I love the color!</h2>
|
<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 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>
|
||||||
<p>
|
<p>
|
||||||
- Admin User
|
- Admin User
|
||||||
</p>
|
</p>
|
||||||
</div>
|
</div>
|
||||||
<div class="carousel-item">
|
<div class="carousel-item">
|
||||||
<h2 class="mb-3">Flexibility !</h2>
|
<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 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>
|
||||||
<p>
|
<p>
|
||||||
- Admin User
|
- Admin User
|
||||||
</p>
|
</p>
|
||||||
</div>
|
</div>
|
||||||
<div class="carousel-item">
|
<div class="carousel-item">
|
||||||
<h2 class="mb-3">Feature Availability!</h2>
|
<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 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>
|
||||||
<p>
|
<p>
|
||||||
- Admin User
|
- Admin User
|
||||||
</p>
|
</p>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div> <!-- end auth-user-testimonial-->
|
</div> <!-- end auth-user-testimonial-->
|
||||||
</div>
|
</div>
|
||||||
<!-- end Auth fluid right content -->
|
<!-- end Auth fluid right content -->
|
||||||
|
|
||||||
<!--Auth fluid left content -->
|
<!--Auth fluid left content -->
|
||||||
<div class="auth-fluid-form-box">
|
<div class="auth-fluid-form-box">
|
||||||
<div class="card-body d-flex flex-column h-100 gap-3">
|
<div class="card-body d-flex flex-column h-100 gap-3">
|
||||||
|
|
||||||
<!-- Logo -->
|
<!-- Logo -->
|
||||||
<div class="auth-brand text-center text-lg-start">
|
<div class="auth-brand text-center text-lg-start">
|
||||||
<a href="/" class="logo-dark">
|
<a href="/" class="logo-dark">
|
||||||
<span><img src="{% static 'dashboard/images/logo-dark.png' %}" alt="dark logo" height="22"></span>
|
<span><img src="{% static 'dashboard/images/logo-dark.png' %}" alt="dark logo" height="22"></span>
|
||||||
</a>
|
</a>
|
||||||
<a href="/" class="logo-light">
|
<a href="/" class="logo-light">
|
||||||
<span><img src="{% static 'dashboard/images/logo.png' %}" alt="logo" height="22"></span>
|
<span><img src="{% static 'dashboard/images/logo.png' %}" alt="logo" height="22"></span>
|
||||||
</a>
|
</a>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="my-auto">
|
<div class="my-auto">
|
||||||
<!-- email send icon with text-->
|
<!-- email send icon with text-->
|
||||||
<div class="text-center m-auto">
|
<div class="text-center m-auto">
|
||||||
<img src="{% static 'dashboard/images/svg/mail_sent.svg' %}" alt="mail sent image" height="64" />
|
<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>
|
<h4 class="text-dark-50 text-center mt-4 fw-bold">Please check your email</h4>
|
||||||
<p class="text-muted mb-4">
|
<p class="text-muted mb-4">
|
||||||
A email has been send to <b>youremail@domain.com</b>.
|
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
|
Please check for an email from company and click on the included link to
|
||||||
reset your password.
|
reset your password.
|
||||||
</p>
|
</p>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<!-- form -->
|
<!-- form -->
|
||||||
<form action="/">
|
<form action="/">
|
||||||
<div class="mb-0 d-grid text-center">
|
<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>
|
<button class="btn btn-primary" type="submit"><i class="ri-home-4-line me-1"></i> Back to Home </button>
|
||||||
</div>
|
</div>
|
||||||
</form>
|
</form>
|
||||||
<!-- end form-->
|
<!-- end form-->
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<!-- Footer-->
|
<!-- Footer-->
|
||||||
<footer class="footer footer-alt">
|
<footer class="footer footer-alt">
|
||||||
<p class="text-muted">
|
<p class="text-muted">
|
||||||
<script>document.write(new Date().getFullYear())</script> © Jidox - Coderthemes.com
|
<script>document.write(new Date().getFullYear())</script> © Polisplexity - Coderthemes.com
|
||||||
</p>
|
</p>
|
||||||
</footer>
|
</footer>
|
||||||
|
|
||||||
</div> <!-- end .card-body -->
|
</div> <!-- end .card-body -->
|
||||||
</div>
|
</div>
|
||||||
<!-- end auth-fluid-form-box-->
|
<!-- end auth-fluid-form-box-->
|
||||||
|
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
<!-- end auth-fluid-->
|
<!-- end auth-fluid-->
|
||||||
|
|
||||||
{% include "pxy_dashboard/partials/footer-script.html" %}
|
{% include "pxy_dashboard/partials/footer-script.html" %}
|
||||||
|
|
||||||
{% block extra_js %}
|
{% block extra_js %}
|
||||||
<!-- App js -->
|
<!-- App js -->
|
||||||
<script src="{% static 'dashboard/js/app.min.js' %}"></script>
|
<script src="{% static 'dashboard/js/app.min.js' %}"></script>
|
||||||
{% endblock extra_js %}
|
{% endblock extra_js %}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@ -1,74 +1,74 @@
|
|||||||
{% load static %}
|
{% load static %}
|
||||||
|
|
||||||
{% include "pxy_dashboard/partials/main.html" %}
|
{% include "pxy_dashboard/partials/main.html" %}
|
||||||
|
|
||||||
<head>
|
<head>
|
||||||
{% include "pxy_dashboard/partials/title-meta.html" with title="Confirm Email" %}
|
{% include "pxy_dashboard/partials/title-meta.html" with title="Confirm Email" %}
|
||||||
|
|
||||||
{% include "pxy_dashboard/partials/head-css.html" %}
|
{% include "pxy_dashboard/partials/head-css.html" %}
|
||||||
</head>
|
</head>
|
||||||
|
|
||||||
<body class="authentication-bg">
|
<body class="authentication-bg">
|
||||||
|
|
||||||
{% include "pxy_dashboard/partials/background.html" %}
|
{% include "pxy_dashboard/partials/background.html" %}
|
||||||
|
|
||||||
<div class="account-pages pt-2 pt-sm-5 pb-4 pb-sm-5 position-relative">
|
<div class="account-pages pt-2 pt-sm-5 pb-4 pb-sm-5 position-relative">
|
||||||
<div class="container">
|
<div class="container">
|
||||||
<div class="row justify-content-center">
|
<div class="row justify-content-center">
|
||||||
<div class="col-xxl-4 col-lg-5">
|
<div class="col-xxl-4 col-lg-5">
|
||||||
<div class="card">
|
<div class="card">
|
||||||
<!-- Logo -->
|
<!-- Logo -->
|
||||||
<div class="card-header pt-4 text-center">
|
<div class="card-header pt-4 text-center">
|
||||||
<div class="auth-brand mb-0">
|
<div class="auth-brand mb-0">
|
||||||
<a href="/" class="logo-dark">
|
<a href="/" class="logo-dark">
|
||||||
<span><img src="{% static 'dashboard/images/logo-dark.png' %}" alt="dark logo"
|
<span><img src="{% static 'dashboard/images/logo-dark.png' %}" alt="dark logo"
|
||||||
height="28"></span>
|
height="28"></span>
|
||||||
</a>
|
</a>
|
||||||
<a href="/" class="logo-light">
|
<a href="/" class="logo-light">
|
||||||
<span><img src="{% static 'dashboard/images/logo.png' %}" alt="logo" height="28"></span>
|
<span><img src="{% static 'dashboard/images/logo.png' %}" alt="logo" height="28"></span>
|
||||||
</a>
|
</a>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="card-body p-4">
|
<div class="card-body p-4">
|
||||||
|
|
||||||
<div class="text-center m-auto">
|
<div class="text-center m-auto">
|
||||||
<img src="{% static 'dashboard/images/svg/mail_sent.svg' %}" alt="mail sent image" height="64" />
|
<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>
|
<h4 class="text-dark-50 text-center mt-4 fw-bold">Please check your email</h4>
|
||||||
<p class="text-muted mb-4">
|
<p class="text-muted mb-4">
|
||||||
A email has been send to <b>youremail@domain.com</b>.
|
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
|
Please check for an email from company and click on the included link to
|
||||||
reset your password.
|
reset your password.
|
||||||
</p>
|
</p>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<form action="/">
|
<form action="/">
|
||||||
<div class="mb-0 text-center">
|
<div class="mb-0 text-center">
|
||||||
<button class="btn btn-primary" type="submit"><i class="ri-home-4-line me-1"></i>
|
<button class="btn btn-primary" type="submit"><i class="ri-home-4-line me-1"></i>
|
||||||
Back to Home</button>
|
Back to Home</button>
|
||||||
</div>
|
</div>
|
||||||
</form>
|
</form>
|
||||||
|
|
||||||
</div> <!-- end card-body-->
|
</div> <!-- end card-body-->
|
||||||
</div>
|
</div>
|
||||||
<!-- end card-->
|
<!-- end card-->
|
||||||
|
|
||||||
</div> <!-- end col -->
|
</div> <!-- end col -->
|
||||||
</div>
|
</div>
|
||||||
<!-- end row -->
|
<!-- end row -->
|
||||||
</div>
|
</div>
|
||||||
<!-- end container -->
|
<!-- end container -->
|
||||||
</div>
|
</div>
|
||||||
<!-- end page -->
|
<!-- end page -->
|
||||||
|
|
||||||
<footer class="footer footer-alt">
|
<footer class="footer footer-alt">
|
||||||
<span class="text-white-50">
|
<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>
|
</span>
|
||||||
</footer>
|
</footer>
|
||||||
{% include "pxy_dashboard/partials/footer-script.html" %}
|
{% include "pxy_dashboard/partials/footer-script.html" %}
|
||||||
|
|
||||||
{% block extra_js %}
|
{% block extra_js %}
|
||||||
<!-- App js -->
|
<!-- App js -->
|
||||||
<script src="{% static 'dashboard/js/app.min.js' %}"></script>
|
<script src="{% static 'dashboard/js/app.min.js' %}"></script>
|
||||||
{% endblock extra_js %}
|
{% endblock extra_js %}
|
||||||
@ -1,85 +1,85 @@
|
|||||||
{% load static %}
|
{% load static %}
|
||||||
|
|
||||||
{% include "pxy_dashboard/partials/main.html" %}
|
{% include "pxy_dashboard/partials/main.html" %}
|
||||||
|
|
||||||
<head>
|
<head>
|
||||||
{% include "pxy_dashboard/partials/title-meta.html" with title="Lock Screen" %}
|
{% include "pxy_dashboard/partials/title-meta.html" with title="Lock Screen" %}
|
||||||
|
|
||||||
{% include "pxy_dashboard/partials/head-css.html" %}
|
{% include "pxy_dashboard/partials/head-css.html" %}
|
||||||
</head>
|
</head>
|
||||||
|
|
||||||
<body class="authentication-bg">
|
<body class="authentication-bg">
|
||||||
|
|
||||||
{% include "pxy_dashboard/partials/background.html" %}
|
{% include "pxy_dashboard/partials/background.html" %}
|
||||||
|
|
||||||
<div class="account-pages pt-2 pt-sm-5 pb-4 pb-sm-5 position-relative">
|
<div class="account-pages pt-2 pt-sm-5 pb-4 pb-sm-5 position-relative">
|
||||||
<div class="container">
|
<div class="container">
|
||||||
<div class="row justify-content-center">
|
<div class="row justify-content-center">
|
||||||
<div class="col-xxl-4 col-lg-5">
|
<div class="col-xxl-4 col-lg-5">
|
||||||
<div class="card">
|
<div class="card">
|
||||||
<!-- Logo -->
|
<!-- Logo -->
|
||||||
|
|
||||||
<div class="card-header pt-4 text-center">
|
<div class="card-header pt-4 text-center">
|
||||||
<div class="auth-brand mb-0">
|
<div class="auth-brand mb-0">
|
||||||
<a href="/" class="logo-dark">
|
<a href="/" class="logo-dark">
|
||||||
<span><img src="{% static 'dashboard/images/logo-dark.png' %}" alt="dark logo" height="28"></span>
|
<span><img src="{% static 'dashboard/images/logo-dark.png' %}" alt="dark logo" height="28"></span>
|
||||||
</a>
|
</a>
|
||||||
<a href="/" class="logo-light">
|
<a href="/" class="logo-light">
|
||||||
<span><img src="{% static 'dashboard/images/logo.png' %}" alt="logo" height="28"></span>
|
<span><img src="{% static 'dashboard/images/logo.png' %}" alt="logo" height="28"></span>
|
||||||
</a>
|
</a>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="card-body p-4">
|
<div class="card-body p-4">
|
||||||
|
|
||||||
<div class="text-center w-75 m-auto">
|
<div class="text-center w-75 m-auto">
|
||||||
<img src="{% static 'dashboard/images/users/avatar-1.jpg' %}" height="64" alt="user-image"
|
<img src="{% static 'dashboard/images/users/avatar-1.jpg' %}" height="64" alt="user-image"
|
||||||
class="rounded-circle shadow">
|
class="rounded-circle shadow">
|
||||||
<h4 class="text-dark-50 text-center mt-3 fw-bold">Hi ! Tosha </h4>
|
<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>
|
<p class="text-muted mb-4">Enter your password to access the admin.</p>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<form action="#">
|
<form action="#">
|
||||||
<div class="mb-3">
|
<div class="mb-3">
|
||||||
<label for="password" class="form-label">Password</label>
|
<label for="password" class="form-label">Password</label>
|
||||||
<input class="form-control" type="password" required="" id="password"
|
<input class="form-control" type="password" required="" id="password"
|
||||||
placeholder="Enter your password">
|
placeholder="Enter your password">
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="mb-0 text-center">
|
<div class="mb-0 text-center">
|
||||||
<button class="btn btn-primary" type="submit">Log In</button>
|
<button class="btn btn-primary" type="submit">Log In</button>
|
||||||
</div>
|
</div>
|
||||||
</form>
|
</form>
|
||||||
|
|
||||||
</div> <!-- end card-body-->
|
</div> <!-- end card-body-->
|
||||||
</div>
|
</div>
|
||||||
<!-- end card-->
|
<!-- end card-->
|
||||||
|
|
||||||
<div class="row mt-3">
|
<div class="row mt-3">
|
||||||
<div class="col-12 text-center">
|
<div class="col-12 text-center">
|
||||||
<p class="text-white-50">Not you? return <a href="{% url 'login' %}"
|
<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>
|
class="text-white ms-1 link-offset-3 text-decoration-underline"><b>Sign In</b></a>
|
||||||
</p>
|
</p>
|
||||||
</div> <!-- end col -->
|
</div> <!-- end col -->
|
||||||
</div>
|
</div>
|
||||||
<!-- end row -->
|
<!-- end row -->
|
||||||
|
|
||||||
</div> <!-- end col -->
|
</div> <!-- end col -->
|
||||||
</div>
|
</div>
|
||||||
<!-- end row -->
|
<!-- end row -->
|
||||||
</div>
|
</div>
|
||||||
<!-- end container -->
|
<!-- end container -->
|
||||||
</div>
|
</div>
|
||||||
<!-- end page -->
|
<!-- end page -->
|
||||||
|
|
||||||
<footer class="footer footer-alt fw-medium">
|
<footer class="footer footer-alt fw-medium">
|
||||||
<span class="text-white-50">
|
<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>
|
</span>
|
||||||
</footer>
|
</footer>
|
||||||
{% include "pxy_dashboard/partials/footer-script.html" %}
|
{% include "pxy_dashboard/partials/footer-script.html" %}
|
||||||
|
|
||||||
{% block extra_js %}
|
{% block extra_js %}
|
||||||
<!-- App js -->
|
<!-- App js -->
|
||||||
<script src="{% static 'dashboard/js/app.min.js' %}"></script>
|
<script src="{% static 'dashboard/js/app.min.js' %}"></script>
|
||||||
{% endblock extra_js %}
|
{% endblock extra_js %}
|
||||||
@ -1,106 +1,106 @@
|
|||||||
{% load static %}
|
{% load static %}
|
||||||
|
|
||||||
{% include "pxy_dashboard/partials/main.html" %}
|
{% include "pxy_dashboard/partials/main.html" %}
|
||||||
|
|
||||||
<head>
|
<head>
|
||||||
{% include "pxy_dashboard/partials/title-meta.html" with title="Log In" %}
|
{% include "pxy_dashboard/partials/title-meta.html" with title="Log In" %}
|
||||||
|
|
||||||
{% include "pxy_dashboard/partials/head-css.html" %}
|
{% include "pxy_dashboard/partials/head-css.html" %}
|
||||||
</head>
|
</head>
|
||||||
|
|
||||||
<body class="authentication-bg position-relative">
|
<body class="authentication-bg position-relative">
|
||||||
|
|
||||||
{% include "pxy_dashboard/partials/background.html" %}
|
{% include "pxy_dashboard/partials/background.html" %}
|
||||||
|
|
||||||
<div class="account-pages pt-2 pt-sm-5 pb-4 pb-sm-5 position-relative">
|
<div class="account-pages pt-2 pt-sm-5 pb-4 pb-sm-5 position-relative">
|
||||||
<div class="container">
|
<div class="container">
|
||||||
<div class="row justify-content-center">
|
<div class="row justify-content-center">
|
||||||
<div class="col-xxl-4 col-lg-5">
|
<div class="col-xxl-4 col-lg-5">
|
||||||
<div class="card">
|
<div class="card">
|
||||||
|
|
||||||
<!-- Logo -->
|
<!-- Logo -->
|
||||||
<div class="card-header pt-4 text-center">
|
<div class="card-header pt-4 text-center">
|
||||||
<div class="auth-brand mb-0">
|
<div class="auth-brand mb-0">
|
||||||
<a href="/" class="logo-dark">
|
<a href="/" class="logo-dark">
|
||||||
<span><img src="{% static 'dashboard/images/logo-dark.png' %}" alt="dark logo" height="28"></span>
|
<span><img src="{% static 'dashboard/images/logo-dark.png' %}" alt="dark logo" height="28"></span>
|
||||||
</a>
|
</a>
|
||||||
<a href="/" class="logo-light">
|
<a href="/" class="logo-light">
|
||||||
<span><img src="{% static 'dashboard/images/logo.png' %}" alt="logo" height="28"></span>
|
<span><img src="{% static 'dashboard/images/logo.png' %}" alt="logo" height="28"></span>
|
||||||
</a>
|
</a>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="card-body p-4">
|
<div class="card-body p-4">
|
||||||
|
|
||||||
<div class="text-center w-75 m-auto">
|
<div class="text-center w-75 m-auto">
|
||||||
<h4 class="text-dark-50 text-center pb-0 fw-bold">Sign In</h4>
|
<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 class="text-muted mb-4">Enter your email address and password to access admin panel.
|
||||||
</p>
|
</p>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<form action="#">
|
<form action="#">
|
||||||
|
|
||||||
<div class="mb-3">
|
<div class="mb-3">
|
||||||
<label for="emailaddress" class="form-label">Email address</label>
|
<label for="emailaddress" class="form-label">Email address</label>
|
||||||
<input class="form-control" type="email" id="emailaddress" required=""
|
<input class="form-control" type="email" id="emailaddress" required=""
|
||||||
placeholder="Enter your email">
|
placeholder="Enter your email">
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="mb-3">
|
<div class="mb-3">
|
||||||
<a href="{% url 'recoverpw' %}" class="text-muted float-end fs-12">Forgot your
|
<a href="{% url 'recoverpw' %}" class="text-muted float-end fs-12">Forgot your
|
||||||
password?</a>
|
password?</a>
|
||||||
<label for="password" class="form-label">Password</label>
|
<label for="password" class="form-label">Password</label>
|
||||||
<div class="input-group input-group-merge">
|
<div class="input-group input-group-merge">
|
||||||
<input type="password" id="password" class="form-control"
|
<input type="password" id="password" class="form-control"
|
||||||
placeholder="Enter your password">
|
placeholder="Enter your password">
|
||||||
<div class="input-group-text" data-password="false">
|
<div class="input-group-text" data-password="false">
|
||||||
<span class="password-eye"></span>
|
<span class="password-eye"></span>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="mb-3 mb-3">
|
<div class="mb-3 mb-3">
|
||||||
<div class="form-check">
|
<div class="form-check">
|
||||||
<input type="checkbox" class="form-check-input" id="checkbox-signin" checked>
|
<input type="checkbox" class="form-check-input" id="checkbox-signin" checked>
|
||||||
<label class="form-check-label" for="checkbox-signin">Remember me</label>
|
<label class="form-check-label" for="checkbox-signin">Remember me</label>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="mb-3 mb-0 text-center">
|
<div class="mb-3 mb-0 text-center">
|
||||||
<button class="btn btn-primary" type="submit"> Log In </button>
|
<button class="btn btn-primary" type="submit"> Log In </button>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
</form>
|
</form>
|
||||||
</div> <!-- end card-body -->
|
</div> <!-- end card-body -->
|
||||||
</div>
|
</div>
|
||||||
<!-- end card -->
|
<!-- end card -->
|
||||||
|
|
||||||
<div class="row mt-3">
|
<div class="row mt-3">
|
||||||
<div class="col-12 text-center">
|
<div class="col-12 text-center">
|
||||||
<p class="text-white-50">Don't have an account? <a href="{% url 'register' %}"
|
<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>
|
class="text-white ms-1 link-offset-3 text-decoration-underline"><b>Sign Up</b></a>
|
||||||
</p>
|
</p>
|
||||||
</div> <!-- end col -->
|
</div> <!-- end col -->
|
||||||
</div>
|
</div>
|
||||||
<!-- end row -->
|
<!-- end row -->
|
||||||
|
|
||||||
</div> <!-- end col -->
|
</div> <!-- end col -->
|
||||||
</div>
|
</div>
|
||||||
<!-- end row -->
|
<!-- end row -->
|
||||||
</div>
|
</div>
|
||||||
<!-- end container -->
|
<!-- end container -->
|
||||||
</div>
|
</div>
|
||||||
<!-- end page -->
|
<!-- end page -->
|
||||||
|
|
||||||
<footer class="footer footer-alt">
|
<footer class="footer footer-alt">
|
||||||
<span class="text-white-50">
|
<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>
|
</span>
|
||||||
</footer>
|
</footer>
|
||||||
|
|
||||||
{% include "pxy_dashboard/partials/footer-script.html" %}
|
{% include "pxy_dashboard/partials/footer-script.html" %}
|
||||||
|
|
||||||
{% block extra_js %}
|
{% block extra_js %}
|
||||||
<!-- App js -->
|
<!-- App js -->
|
||||||
<script src="{% static 'dashboard/js/app.min.js' %}"></script>
|
<script src="{% static 'dashboard/js/app.min.js' %}"></script>
|
||||||
{% endblock extra_js %}
|
{% endblock extra_js %}
|
||||||
@ -1,83 +1,83 @@
|
|||||||
{% load static %}
|
{% load static %}
|
||||||
|
|
||||||
{% include "pxy_dashboard/partials/main.html" %}
|
{% include "pxy_dashboard/partials/main.html" %}
|
||||||
|
|
||||||
<head>
|
<head>
|
||||||
{% include "pxy_dashboard/partials/title-meta.html" with title="Logout" %}
|
{% include "pxy_dashboard/partials/title-meta.html" with title="Logout" %}
|
||||||
|
|
||||||
{% include "pxy_dashboard/partials/head-css.html" %}
|
{% include "pxy_dashboard/partials/head-css.html" %}
|
||||||
</head>
|
</head>
|
||||||
|
|
||||||
<body class="authentication-bg">
|
<body class="authentication-bg">
|
||||||
|
|
||||||
{% include "pxy_dashboard/partials/background.html" %}
|
{% include "pxy_dashboard/partials/background.html" %}
|
||||||
|
|
||||||
<div class="account-pages pt-2 pt-sm-5 pb-4 pb-sm-5 position-relative">
|
<div class="account-pages pt-2 pt-sm-5 pb-4 pb-sm-5 position-relative">
|
||||||
<div class="container">
|
<div class="container">
|
||||||
<div class="row justify-content-center">
|
<div class="row justify-content-center">
|
||||||
<div class="col-xxl-4 col-lg-5">
|
<div class="col-xxl-4 col-lg-5">
|
||||||
<div class="card">
|
<div class="card">
|
||||||
|
|
||||||
<!-- Logo -->
|
<!-- Logo -->
|
||||||
<div class="card-header pt-4 text-center">
|
<div class="card-header pt-4 text-center">
|
||||||
<div class="auth-brand mb-0">
|
<div class="auth-brand mb-0">
|
||||||
<a href="/" class="logo-dark">
|
<a href="/" class="logo-dark">
|
||||||
<span><img src="{% static 'dashboard/images/logo-dark.png' %}" alt="dark logo" height="28"></span>
|
<span><img src="{% static 'dashboard/images/logo-dark.png' %}" alt="dark logo" height="28"></span>
|
||||||
</a>
|
</a>
|
||||||
<a href="/" class="logo-light">
|
<a href="/" class="logo-light">
|
||||||
<span><img src="{% static 'dashboard/images/logo.png' %}" alt="logo" height="28"></span>
|
<span><img src="{% static 'dashboard/images/logo.png' %}" alt="logo" height="28"></span>
|
||||||
</a>
|
</a>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="card-body p-4">
|
<div class="card-body p-4">
|
||||||
|
|
||||||
<div class="text-center w-75 m-auto">
|
<div class="text-center w-75 m-auto">
|
||||||
<h4 class="text-dark-50 text-center mt-0 fw-bold">See You Again !</h4>
|
<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>
|
<p class="text-muted mb-4">You are now successfully sign out.</p>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="logout-icon m-auto">
|
<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"
|
<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">
|
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
|
<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
|
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"/>
|
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"/>
|
<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
|
<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 "/>
|
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"/>
|
<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>
|
</svg>
|
||||||
</div> <!-- end logout-icon-->
|
</div> <!-- end logout-icon-->
|
||||||
|
|
||||||
</div> <!-- end card-body-->
|
</div> <!-- end card-body-->
|
||||||
</div> <!-- end card-->
|
</div> <!-- end card-->
|
||||||
|
|
||||||
<div class="row mt-3">
|
<div class="row mt-3">
|
||||||
<div class="col-12 text-center">
|
<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>
|
<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 col -->
|
||||||
</div>
|
</div>
|
||||||
<!-- end row -->
|
<!-- end row -->
|
||||||
|
|
||||||
</div> <!-- end col -->
|
</div> <!-- end col -->
|
||||||
</div>
|
</div>
|
||||||
<!-- end row -->
|
<!-- end row -->
|
||||||
</div>
|
</div>
|
||||||
<!-- end container -->
|
<!-- end container -->
|
||||||
</div>
|
</div>
|
||||||
<!-- end page -->
|
<!-- end page -->
|
||||||
|
|
||||||
<footer class="footer footer-alt">
|
<footer class="footer footer-alt">
|
||||||
<span class="text-white-50"><script>document.write(new Date().getFullYear())</script> © Jidox - Coderthemes.com</span>
|
<span class="text-white-50"><script>document.write(new Date().getFullYear())</script> © Polisplexity - Coderthemes.com</span>
|
||||||
</footer>
|
</footer>
|
||||||
{% include "pxy_dashboard/partials/footer-script.html" %}
|
{% include "pxy_dashboard/partials/footer-script.html" %}
|
||||||
|
|
||||||
{% block extra_js %}
|
{% block extra_js %}
|
||||||
<!-- App js -->
|
<!-- App js -->
|
||||||
<script src="{% static 'dashboard/js/app.min.js' %}"></script>
|
<script src="{% static 'dashboard/js/app.min.js' %}"></script>
|
||||||
{% endblock extra_js %}
|
{% endblock extra_js %}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@ -1,80 +1,80 @@
|
|||||||
{% load static %}
|
{% load static %}
|
||||||
|
|
||||||
{% include "pxy_dashboard/partials/main.html" %}
|
{% include "pxy_dashboard/partials/main.html" %}
|
||||||
|
|
||||||
<head>
|
<head>
|
||||||
{% include "pxy_dashboard/partials/title-meta.html" with title="Recover Password" %}
|
{% include "pxy_dashboard/partials/title-meta.html" with title="Recover Password" %}
|
||||||
|
|
||||||
{% include "pxy_dashboard/partials/head-css.html" %}
|
{% include "pxy_dashboard/partials/head-css.html" %}
|
||||||
</head>
|
</head>
|
||||||
|
|
||||||
<body class="authentication-bg">
|
<body class="authentication-bg">
|
||||||
|
|
||||||
{% include "pxy_dashboard/partials/background.html" %}
|
{% include "pxy_dashboard/partials/background.html" %}
|
||||||
|
|
||||||
<div class="account-pages pt-2 pt-sm-5 pb-4 pb-sm-5 position-relative">
|
<div class="account-pages pt-2 pt-sm-5 pb-4 pb-sm-5 position-relative">
|
||||||
<div class="container">
|
<div class="container">
|
||||||
<div class="row justify-content-center">
|
<div class="row justify-content-center">
|
||||||
<div class="col-xxl-4 col-lg-5">
|
<div class="col-xxl-4 col-lg-5">
|
||||||
<div class="card">
|
<div class="card">
|
||||||
<!-- Logo -->
|
<!-- Logo -->
|
||||||
<div class="card-header pt-4 text-center">
|
<div class="card-header pt-4 text-center">
|
||||||
<div class="auth-brand mb-0">
|
<div class="auth-brand mb-0">
|
||||||
<a href="/" class="logo-dark">
|
<a href="/" class="logo-dark">
|
||||||
<span><img src="{% static 'dashboard/images/logo-dark.png' %}" alt="dark logo" height="28"></span>
|
<span><img src="{% static 'dashboard/images/logo-dark.png' %}" alt="dark logo" height="28"></span>
|
||||||
</a>
|
</a>
|
||||||
<a href="/" class="logo-light">
|
<a href="/" class="logo-light">
|
||||||
<span><img src="{% static 'dashboard/images/logo.png' %}" alt="logo" height="28"></span>
|
<span><img src="{% static 'dashboard/images/logo.png' %}" alt="logo" height="28"></span>
|
||||||
</a>
|
</a>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="card-body p-4">
|
<div class="card-body p-4">
|
||||||
|
|
||||||
<div class="text-center w-75 m-auto">
|
<div class="text-center w-75 m-auto">
|
||||||
<h4 class="text-dark-50 text-center mt-0 fw-bold">Reset Password</h4>
|
<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
|
<p class="text-muted mb-4">Enter your email address and we'll send you an email with
|
||||||
instructions to reset your password.</p>
|
instructions to reset your password.</p>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<form action="#">
|
<form action="#">
|
||||||
<div class="mb-3">
|
<div class="mb-3">
|
||||||
<label for="emailaddress" class="form-label">Email address</label>
|
<label for="emailaddress" class="form-label">Email address</label>
|
||||||
<input class="form-control" type="email" id="emailaddress" required=""
|
<input class="form-control" type="email" id="emailaddress" required=""
|
||||||
placeholder="Enter your email">
|
placeholder="Enter your email">
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="mb-0 text-center">
|
<div class="mb-0 text-center">
|
||||||
<button class="btn btn-primary" type="submit">Reset Password</button>
|
<button class="btn btn-primary" type="submit">Reset Password</button>
|
||||||
</div>
|
</div>
|
||||||
</form>
|
</form>
|
||||||
</div> <!-- end card-body-->
|
</div> <!-- end card-body-->
|
||||||
</div>
|
</div>
|
||||||
<!-- end card -->
|
<!-- end card -->
|
||||||
|
|
||||||
<div class="row mt-3">
|
<div class="row mt-3">
|
||||||
<div class="col-12 text-center">
|
<div class="col-12 text-center">
|
||||||
<p class="text-white-50">Back to <a href="{% url 'login' %}"
|
<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>
|
class="text-white ms-1 link-offset-3 text-decoration-underline"><b>Log In</b></a>
|
||||||
</p>
|
</p>
|
||||||
</div> <!-- end col -->
|
</div> <!-- end col -->
|
||||||
</div>
|
</div>
|
||||||
<!-- end row -->
|
<!-- end row -->
|
||||||
|
|
||||||
</div> <!-- end col -->
|
</div> <!-- end col -->
|
||||||
</div>
|
</div>
|
||||||
<!-- end row -->
|
<!-- end row -->
|
||||||
</div>
|
</div>
|
||||||
<!-- end container -->
|
<!-- end container -->
|
||||||
</div>
|
</div>
|
||||||
<!-- end page -->
|
<!-- end page -->
|
||||||
|
|
||||||
<footer class="footer footer-alt">
|
<footer class="footer footer-alt">
|
||||||
<span class="text-white-50"><script>document.write(new Date().getFullYear())</script> © Jidox - Coderthemes.com</span>
|
<span class="text-white-50"><script>document.write(new Date().getFullYear())</script> © Polisplexity - Coderthemes.com</span>
|
||||||
</footer>
|
</footer>
|
||||||
{% include "pxy_dashboard/partials/footer-script.html" %}
|
{% include "pxy_dashboard/partials/footer-script.html" %}
|
||||||
|
|
||||||
{% block extra_js %}
|
{% block extra_js %}
|
||||||
<!-- App js -->
|
<!-- App js -->
|
||||||
<script src="{% static 'dashboard/js/app.min.js' %}"></script>
|
<script src="{% static 'dashboard/js/app.min.js' %}"></script>
|
||||||
{% endblock extra_js %}
|
{% endblock extra_js %}
|
||||||
@ -1,103 +1,103 @@
|
|||||||
{% load static %}
|
{% load static %}
|
||||||
|
|
||||||
{% include "pxy_dashboard/partials/main.html" %}
|
{% include "pxy_dashboard/partials/main.html" %}
|
||||||
|
|
||||||
<head>
|
<head>
|
||||||
{% include "pxy_dashboard/partials/title-meta.html" with title="Register" %}
|
{% include "pxy_dashboard/partials/title-meta.html" with title="Register" %}
|
||||||
|
|
||||||
{% include "pxy_dashboard/partials/head-css.html" %}
|
{% include "pxy_dashboard/partials/head-css.html" %}
|
||||||
</head>
|
</head>
|
||||||
|
|
||||||
<body class="authentication-bg">
|
<body class="authentication-bg">
|
||||||
|
|
||||||
{% include "pxy_dashboard/partials/background.html" %}
|
{% include "pxy_dashboard/partials/background.html" %}
|
||||||
|
|
||||||
<div class="account-pages pt-2 pt-sm-5 pb-4 pb-sm-5 position-relative">
|
<div class="account-pages pt-2 pt-sm-5 pb-4 pb-sm-5 position-relative">
|
||||||
<div class="container">
|
<div class="container">
|
||||||
<div class="row justify-content-center">
|
<div class="row justify-content-center">
|
||||||
<div class="col-xxl-4 col-lg-5">
|
<div class="col-xxl-4 col-lg-5">
|
||||||
<div class="card">
|
<div class="card">
|
||||||
<!-- Logo-->
|
<!-- Logo-->
|
||||||
<div class="card-header pt-4 text-center">
|
<div class="card-header pt-4 text-center">
|
||||||
<div class="auth-brand mb-0">
|
<div class="auth-brand mb-0">
|
||||||
<a href="/" class="logo-dark">
|
<a href="/" class="logo-dark">
|
||||||
<span><img src="{% static 'dashboard/images/logo-dark.png' %}" alt="dark logo" height="28"></span>
|
<span><img src="{% static 'dashboard/images/logo-dark.png' %}" alt="dark logo" height="28"></span>
|
||||||
</a>
|
</a>
|
||||||
<a href="/" class="logo-light">
|
<a href="/" class="logo-light">
|
||||||
<span><img src="{% static 'dashboard/images/logo.png' %}" alt="logo" height="28"></span>
|
<span><img src="{% static 'dashboard/images/logo.png' %}" alt="logo" height="28"></span>
|
||||||
</a>
|
</a>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="card-body p-4">
|
<div class="card-body p-4">
|
||||||
|
|
||||||
<div class="text-center w-75 m-auto">
|
<div class="text-center w-75 m-auto">
|
||||||
<h4 class="text-dark-50 text-center mt-0 fw-bold">Free Sign Up</h4>
|
<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>
|
<p class="text-muted mb-4">Don't have an account? Create your account, it takes less than a minute </p>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<form action="#">
|
<form action="#">
|
||||||
|
|
||||||
<div class="mb-3">
|
<div class="mb-3">
|
||||||
<label for="fullname" class="form-label">Full Name</label>
|
<label for="fullname" class="form-label">Full Name</label>
|
||||||
<input class="form-control" type="text" id="fullname" placeholder="Enter your name" required>
|
<input class="form-control" type="text" id="fullname" placeholder="Enter your name" required>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="mb-3">
|
<div class="mb-3">
|
||||||
<label for="emailaddress" class="form-label">Email address</label>
|
<label for="emailaddress" class="form-label">Email address</label>
|
||||||
<input class="form-control" type="email" id="emailaddress" required placeholder="Enter your email">
|
<input class="form-control" type="email" id="emailaddress" required placeholder="Enter your email">
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="mb-3">
|
<div class="mb-3">
|
||||||
<label for="password" class="form-label">Password</label>
|
<label for="password" class="form-label">Password</label>
|
||||||
<div class="input-group input-group-merge">
|
<div class="input-group input-group-merge">
|
||||||
<input type="password" id="password" class="form-control" placeholder="Enter your password">
|
<input type="password" id="password" class="form-control" placeholder="Enter your password">
|
||||||
<div class="input-group-text" data-password="false">
|
<div class="input-group-text" data-password="false">
|
||||||
<span class="password-eye"></span>
|
<span class="password-eye"></span>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="mb-3">
|
<div class="mb-3">
|
||||||
<div class="form-check">
|
<div class="form-check">
|
||||||
<input type="checkbox" class="form-check-input" id="checkbox-signup">
|
<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>
|
<label class="form-check-label" for="checkbox-signup">I accept <a href="#" class="text-muted">Terms and Conditions</a></label>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="mb-3 text-center">
|
<div class="mb-3 text-center">
|
||||||
<button class="btn btn-primary" type="submit"> Sign Up </button>
|
<button class="btn btn-primary" type="submit"> Sign Up </button>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
</form>
|
</form>
|
||||||
</div> <!-- end card-body -->
|
</div> <!-- end card-body -->
|
||||||
</div>
|
</div>
|
||||||
<!-- end card -->
|
<!-- end card -->
|
||||||
|
|
||||||
<div class="row mt-3">
|
<div class="row mt-3">
|
||||||
<div class="col-12 text-center">
|
<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>
|
<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 col-->
|
||||||
</div>
|
</div>
|
||||||
<!-- end row -->
|
<!-- end row -->
|
||||||
|
|
||||||
</div> <!-- end col -->
|
</div> <!-- end col -->
|
||||||
</div>
|
</div>
|
||||||
<!-- end row -->
|
<!-- end row -->
|
||||||
</div>
|
</div>
|
||||||
<!-- end container -->
|
<!-- end container -->
|
||||||
</div>
|
</div>
|
||||||
<!-- end page -->
|
<!-- end page -->
|
||||||
|
|
||||||
<footer class="footer footer-alt">
|
<footer class="footer footer-alt">
|
||||||
<span class="text-white-50"><script>document.write(new Date().getFullYear())</script> © Jidox - Coderthemes.com</span>
|
<span class="text-white-50"><script>document.write(new Date().getFullYear())</script> © Polisplexity - Coderthemes.com</span>
|
||||||
</footer>
|
</footer>
|
||||||
{% include "pxy_dashboard/partials/footer-script.html" %}
|
{% include "pxy_dashboard/partials/footer-script.html" %}
|
||||||
|
|
||||||
{% block extra_js %}
|
{% block extra_js %}
|
||||||
<!-- App js -->
|
<!-- App js -->
|
||||||
<script src="{% static 'dashboard/js/app.min.js' %}"></script>
|
<script src="{% static 'dashboard/js/app.min.js' %}"></script>
|
||||||
{% endblock extra_js %}
|
{% endblock extra_js %}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@ -1,68 +1,68 @@
|
|||||||
{% load static %}
|
{% load static %}
|
||||||
|
|
||||||
{% include "pxy_dashboard/partials/main.html" %}
|
{% include "pxy_dashboard/partials/main.html" %}
|
||||||
|
|
||||||
<head>
|
<head>
|
||||||
{% include "pxy_dashboard/partials/title-meta.html" with title="Error 500" %}
|
{% include "pxy_dashboard/partials/title-meta.html" with title="Error 500" %}
|
||||||
|
|
||||||
{% include "pxy_dashboard/partials/head-css.html" %}
|
{% include "pxy_dashboard/partials/head-css.html" %}
|
||||||
</head>
|
</head>
|
||||||
|
|
||||||
<body class="authentication-bg">
|
<body class="authentication-bg">
|
||||||
|
|
||||||
{% include "pxy_dashboard/partials/background.html" %}
|
{% include "pxy_dashboard/partials/background.html" %}
|
||||||
|
|
||||||
<div class="account-pages pt-2 pt-sm-5 pb-4 pb-sm-5 position-relative">
|
<div class="account-pages pt-2 pt-sm-5 pb-4 pb-sm-5 position-relative">
|
||||||
<div class="container">
|
<div class="container">
|
||||||
<div class="row justify-content-center">
|
<div class="row justify-content-center">
|
||||||
<div class="col-xxl-4 col-lg-5">
|
<div class="col-xxl-4 col-lg-5">
|
||||||
<div class="card">
|
<div class="card">
|
||||||
<!-- Logo -->
|
<!-- Logo -->
|
||||||
<div class="card-header pt-4 text-center">
|
<div class="card-header pt-4 text-center">
|
||||||
<div class="auth-brand mb-0">
|
<div class="auth-brand mb-0">
|
||||||
<a href="/" class="logo-dark">
|
<a href="/" class="logo-dark">
|
||||||
<span><img src="{% static 'dashboard/images/logo-dark.png' %}" alt="dark logo" height="28"></span>
|
<span><img src="{% static 'dashboard/images/logo-dark.png' %}" alt="dark logo" height="28"></span>
|
||||||
</a>
|
</a>
|
||||||
<a href="/" class="logo-light">
|
<a href="/" class="logo-light">
|
||||||
<span><img src="{% static 'dashboard/images/logo.png' %}" alt="logo" height="28"></span>
|
<span><img src="{% static 'dashboard/images/logo.png' %}" alt="logo" height="28"></span>
|
||||||
</a>
|
</a>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="card-body p-4">
|
<div class="card-body p-4">
|
||||||
|
|
||||||
<div class="text-center">
|
<div class="text-center">
|
||||||
<img src="{% static 'dashboard/images/svg/startman.svg' %}" height="120" alt="File not found Image">
|
<img src="{% static 'dashboard/images/svg/startman.svg' %}" height="120" alt="File not found Image">
|
||||||
|
|
||||||
<h1 class="text-error mt-4">500</h1>
|
<h1 class="text-error mt-4">500</h1>
|
||||||
<h4 class="text-uppercase text-danger mt-3">Internal Server Error</h4>
|
<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>
|
<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>
|
<a class="btn btn-info mt-3" href="/"><i class="ri-home-4-line me-1"></i> Return Home</a>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
</div> <!-- end card-body-->
|
</div> <!-- end card-body-->
|
||||||
</div>
|
</div>
|
||||||
<!-- end card-->
|
<!-- end card-->
|
||||||
|
|
||||||
</div> <!-- end col -->
|
</div> <!-- end col -->
|
||||||
</div>
|
</div>
|
||||||
<!-- end row -->
|
<!-- end row -->
|
||||||
</div>
|
</div>
|
||||||
<!-- end container -->
|
<!-- end container -->
|
||||||
</div>
|
</div>
|
||||||
<!-- end page -->
|
<!-- end page -->
|
||||||
|
|
||||||
<footer class="footer footer-alt">
|
<footer class="footer footer-alt">
|
||||||
<span class="text-white-50"><script>document.write(new Date().getFullYear())</script> © Jidox - Coderthemes.com</span>
|
<span class="text-white-50"><script>document.write(new Date().getFullYear())</script> © Polisplexity - Coderthemes.com</span>
|
||||||
</footer>
|
</footer>
|
||||||
|
|
||||||
{% include "pxy_dashboard/partials/footer-script.html" %}
|
{% include "pxy_dashboard/partials/footer-script.html" %}
|
||||||
|
|
||||||
{% block extra_js %}
|
{% block extra_js %}
|
||||||
<!-- App js -->
|
<!-- App js -->
|
||||||
<script src="{% static 'dashboard/js/app.min.js' %}"></script>
|
<script src="{% static 'dashboard/js/app.min.js' %}"></script>
|
||||||
{% endblock extra_js %}
|
{% endblock extra_js %}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@ -1,77 +1,77 @@
|
|||||||
{% load static %}
|
{% load static %}
|
||||||
|
|
||||||
{% include "pxy_dashboard/partials/main.html" %}
|
{% include "pxy_dashboard/partials/main.html" %}
|
||||||
|
|
||||||
{% include "pxy_dashboard/partials/head-css.html" %}
|
{% include "pxy_dashboard/partials/head-css.html" %}
|
||||||
|
|
||||||
<body class="authentication-bg position-relative">
|
<body class="authentication-bg position-relative">
|
||||||
{% include "pxy_dashboard/partials/background.html" %}
|
{% include "pxy_dashboard/partials/background.html" %}
|
||||||
|
|
||||||
<div class="account-pages pt-2 pt-sm-5 pb-4 pb-sm-5 position-relative">
|
<div class="account-pages pt-2 pt-sm-5 pb-4 pb-sm-5 position-relative">
|
||||||
<div class="container">
|
<div class="container">
|
||||||
<div class="row justify-content-center">
|
<div class="row justify-content-center">
|
||||||
<div class="col-xxl-10">
|
<div class="col-xxl-10">
|
||||||
<div class="card">
|
<div class="card">
|
||||||
<div class="card-body p-4">
|
<div class="card-body p-4">
|
||||||
|
|
||||||
<div class="text-center">
|
<div class="text-center">
|
||||||
<img src="{% static 'dashboard/images/svg/maintenance.svg' %}" height="150"
|
<img src="{% static 'dashboard/images/svg/maintenance.svg' %}" height="150"
|
||||||
alt="File not found Image">
|
alt="File not found Image">
|
||||||
<h3 class="mt-4">Site is Under Maintenance</h3>
|
<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>
|
<p class="text-muted">We're making the system more awesome. We'll be back shortly.</p>
|
||||||
|
|
||||||
<div class="row mt-5">
|
<div class="row mt-5">
|
||||||
<div class="col-md-4">
|
<div class="col-md-4">
|
||||||
<div class="text-center mt-3 ps-1 pe-1">
|
<div class="text-center mt-3 ps-1 pe-1">
|
||||||
<i
|
<i
|
||||||
class="ri-vip-diamond-line bg-primary maintenance-icon text-white mb-4"></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>
|
<h5 class="text-uppercase">Why is the Site Down?</h5>
|
||||||
<p class="text-muted">There are many variations of passages of Lorem Ipsum
|
<p class="text-muted">There are many variations of passages of Lorem Ipsum
|
||||||
available, but the majority have suffered alteration.</p>
|
available, but the majority have suffered alteration.</p>
|
||||||
</div>
|
</div>
|
||||||
</div> <!-- end col-->
|
</div> <!-- end col-->
|
||||||
<div class="col-md-4">
|
<div class="col-md-4">
|
||||||
<div class="text-center mt-3 ps-1 pe-1">
|
<div class="text-center mt-3 ps-1 pe-1">
|
||||||
<i class="ri-time-line bg-primary maintenance-icon text-white mb-4"></i>
|
<i class="ri-time-line bg-primary maintenance-icon text-white mb-4"></i>
|
||||||
<h5 class="text-uppercase">What is the Downtime?</h5>
|
<h5 class="text-uppercase">What is the Downtime?</h5>
|
||||||
<p class="text-muted">Contrary to popular belief, Lorem Ipsum is not simply
|
<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>
|
random text. It has roots in a piece of classical but the majority.</p>
|
||||||
</div>
|
</div>
|
||||||
</div> <!-- end col-->
|
</div> <!-- end col-->
|
||||||
<div class="col-md-4">
|
<div class="col-md-4">
|
||||||
<div class="text-center mt-3 ps-1 pe-1">
|
<div class="text-center mt-3 ps-1 pe-1">
|
||||||
<i class="ri-question-mark bg-primary maintenance-icon text-white mb-4"></i>
|
<i class="ri-question-mark bg-primary maintenance-icon text-white mb-4"></i>
|
||||||
<h5 class="text-uppercase">Do you need Support?</h5>
|
<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
|
<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:#"
|
need to be sure there isn't anything embar.. <a href="mailto:#"
|
||||||
class="text-muted fw-bold">no-reply@domain.com</a></p>
|
class="text-muted fw-bold">no-reply@domain.com</a></p>
|
||||||
</div>
|
</div>
|
||||||
</div> <!-- end col-->
|
</div> <!-- end col-->
|
||||||
</div> <!-- end row-->
|
</div> <!-- end row-->
|
||||||
</div> <!-- end /.text-center-->
|
</div> <!-- end /.text-center-->
|
||||||
</div> <!-- end card-body -->
|
</div> <!-- end card-body -->
|
||||||
</div>
|
</div>
|
||||||
<!-- end card -->
|
<!-- end card -->
|
||||||
|
|
||||||
</div> <!-- end col -->
|
</div> <!-- end col -->
|
||||||
</div>
|
</div>
|
||||||
<!-- end row -->
|
<!-- end row -->
|
||||||
</div>
|
</div>
|
||||||
<!-- end container -->
|
<!-- end container -->
|
||||||
</div>
|
</div>
|
||||||
<!-- end page -->
|
<!-- end page -->
|
||||||
|
|
||||||
<footer class="footer footer-alt">
|
<footer class="footer footer-alt">
|
||||||
<span class="text-white-50">
|
<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>
|
</span>
|
||||||
</footer>
|
</footer>
|
||||||
|
|
||||||
</body>
|
</body>
|
||||||
|
|
||||||
{% include "pxy_dashboard/partials/footer-script.html" %}
|
{% include "pxy_dashboard/partials/footer-script.html" %}
|
||||||
|
|
||||||
{% block extra_js %}
|
{% block extra_js %}
|
||||||
<!-- App js -->
|
<!-- App js -->
|
||||||
<script src="{% static 'dashboard/js/app.min.js' %}"></script>
|
<script src="{% static 'dashboard/js/app.min.js' %}"></script>
|
||||||
{% endblock extra_js %}
|
{% endblock extra_js %}
|
||||||
@ -1,14 +1,14 @@
|
|||||||
<!-- start page title -->
|
<!-- start page title -->
|
||||||
<div class="row">
|
<div class="row">
|
||||||
<div class="col-12">
|
<div class="col-12">
|
||||||
<div class="page-title-box justify-content-between d-flex align-items-md-center flex-md-row flex-column">
|
<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>
|
<h4 class="page-title">{{title}}</h4>
|
||||||
<ol class="breadcrumb m-0">
|
<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);">Polisplexity</a></li>
|
||||||
<li class="breadcrumb-item"><a href="javascript: void(0);">{{pagetitle}}</a></li>
|
<li class="breadcrumb-item"><a href="javascript: void(0);">{{pagetitle}}</a></li>
|
||||||
<li class="breadcrumb-item active">{{title}}</li>
|
<li class="breadcrumb-item active">{{title}}</li>
|
||||||
</ol>
|
</ol>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<!-- end page title -->
|
<!-- end page title -->
|
||||||
|
|||||||
@ -43,7 +43,7 @@
|
|||||||
|
|
||||||
<footer class="footer footer-alt">
|
<footer class="footer footer-alt">
|
||||||
<span class="text-white-50">
|
<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>
|
</span>
|
||||||
</footer>
|
</footer>
|
||||||
{% endblock %}
|
{% endblock %}
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user