Sindbad~EG File Manager

Current Path : /home/numerotech/mcq.numerotech.com/MCQ_APP/core_old/templates/users/
Upload File :
Current File : //home/numerotech/mcq.numerotech.com/MCQ_APP/core_old/templates/users/layout.html

<!DOCTYPE html>
<html>
    <head>
        <title>KSOS MCQ Submission Application{% block title %}{% endblock %}</title>
        <meta name="viewport" content="width=device-width, initial-scale=1 , maximum-scale=1" />
        <meta charset="UTF-8" />
        <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@4.0.0/dist/css/bootstrap.min.css" crossorigin="anonymous" />
        <link href="https://cdn.jsdelivr.net/gh/NumeroTec/ntec_cdn@main/static/css/v6/all.css" rel="stylesheet" />
        <link href="https://cdn.jsdelivr.net/gh/NumeroTec/ntec_cdn@main/static/css/v6/sharp-regular.css" rel="stylesheet" />
        <link href="https://cdn.jsdelivr.net/gh/NumeroTec/ntec_cdn@main/static/css/v6/sharp-solid.css" rel="stylesheet" />
        <link rel="stylesheet" href="\static\css\style_ksos23.css" />
        <link rel="shortcut icon" href="#" />
        <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.1.1/css/all.min.css" />
        <noscript>
            <style>
                html{
                    overflow: hidden;
                }
                body {
                    overflow-y: hidden;
                }
                svg#header
                    {
                        position: absolute;
                        left: 0;
                        top: 0;
                    }

                .bodyblock {
                    position: fixed;
                    z-index: 100;
                    width: 100%;
                    height: 100%;
                    background-color: rgba(0, 0, 0, 0.4);
                    overflow: hidden;
                }

                .blockcontent {
                    text-align: center;
                    font-size: 20px;
                    margin: 0 auto;
                    width: 500px;
                    top: 50%;
                    position: fixed;
                    left: 50%;
                    transform: translate(-50%, -50%);
                    background: white;
                    border-radius: 10px;
                    padding: 10px;
                }
            </style>
            <div class="bodyblock">
                <div class="blockcontent">
                    <h2>
                        <i class="fa fa-ban text-danger" aria-hidden="true"></i> For full functionality of this site it is necessary to enable JavaScript. Here are the
                        <a href="https://www.enable-javascript.com/" target="_blank"> instructions how to enable JavaScript in your web browser</a>.
                    </h2>
                </div>
            </div>
        </noscript>
    </head>

    <body>
        <div class="container-fluid">
            <div class="row bg-light">
                <div class="col">
                    <div class="row ">
                        <div class="col-12 col-sm-12 col-md-6 col-xl-6 brand header_image">
                            <img id="header_image" class="logo img-fluid" src="https://common-application.s3.ap-southeast-1.amazonaws.com/ksos_logo.png" alt="Logo" />
                        </div>
                        <div class="col-12 col-sm-12 col-md-6 col-xl-6 text-right text-md-right name align-end align-content-center mb-2">
                            <h4><img src="/static/images/default-1.jpg" alt="" style="max-height: 50px;border-radius: 50%;" class="img-fluid "><span class="ml-2">{{ Auth.get_user().get('prefix') }}{{ Auth.get_user().get('full_name') }}</span></h4>
                            <a href="{{ url_for('user.app_dashboard') }}" class="btn btn-outline-primary px-3 py-2 " style="text-decoration: none;"><i class="fa-solid fa-house"></i> Home</a>
                            <a class="btn btn-outline-primary px-3 py-2 ml-2" href="{{ url_for('user.Logout') }}" style="text-decoration: none;"><i class="fas fa-door-open    "></i> logout</a>
                        </div>
                    </div>
                </div>
            </div>
        </div>

        <div class="container-fluid p-0">
            <div class="row mr-0">
                <div class="col-12 col-sm-12 col-md-12 col-xl-12 text-center mt-5 mb-0">
                    <h1 class="font-weight-bold" style="color: #00166B;font-family: 'Open Sans';font-size: 44px;font-style: normal;font-weight: 700;line-height: normal;letter-spacing: -0.88px;" >MCQ Submission</h1>
                </div>
                {% if Auth.get_user() %}
                <div class="col-lg-9 col-md-12 col-sm-12 p-md-2">
                    <div class="mx-2 p-2 rounded">
                        <div class="px-2">{% block absTitle %}{% endblock %}</div>
                        <!--<div >-->
                        {% for mesg in get_flashed_messages(with_categories=True)|unique %} {% if mesg[1] %} {% if mesg[0]== "warning" %}

                        <div class="alert text-dark text-center Profile_bg" id="successMessage">
                            <button type="button" class="close" aria-label="Close">
                                <span aria-hidden="true">&times;</span>
                            </button>
                            <h4>{{ mesg[1] }}</h4>
                        </div>
                        {% elif mesg[0] == "success" %}
                        <div class="alert text-dark text-center alert-success" id="successMessage">
                            <button type="button" class="close" aria-label="Close">
                                <span aria-hidden="true">&times;</span>
                            </button>
                            <h4>{{ mesg[1] }}</h4>
                        </div>
                        {% else %}
                        <div class="alert alert-danger text-danger text-center" id="successMessage">
                            <button type="button" class="close" aria-label="Close">
                                <span aria-hidden="true">&times;</span>
                            </button>
                            <h4>{{ mesg[1] }}</h4>
                        </div>
                        {% endif %} {% endif %} {% endfor %}
                        <div class="alert alert-success text-success text-center" style="display: none;" id="successMes">
                            <label id="error_message_label"></label>
                            <button type="button" class="close" aria-label="Close">
                                <span aria-hidden="true">&times;</span>
                            </button>
                        </div>
                        {% endif %}
                    </div>
                </div>
                <div class="col-12 pr-0" >
                    <div id="content" >{% block content %}{% endblock %}</div>
                </div>
        </div>
        <!-- <div class="container-fluid bottom_div">
            <section class="footer text-dark">
                <div class="text-center float-right mr-4"></div>
            </section>
        </div> -->
    </body>
    <script src="https://code.jquery.com/jquery-3.5.1.min.js" charset="utf-8"></script>
    <script src="https://cdnjs.cloudflare.com/ajax/libs/jquery-validate/1.19.5/jquery.validate.min.js" charset="utf-8"></script>
    <script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/2.6.0/umd/popper.min.js"></script>
    <script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-beta.2/js/bootstrap.min.js"></script>
    <script src="https://code.iconify.design/2/2.1.0/iconify.min.js"></script>
    <script src="/static/js/ajaxloader.js"></script>
    <script type="text/javascript">
        var BaseUrl = document.location.origin;

        $(document).ready(function () {
            $("#successMes").hide();
            $("#container").hide();
            $("#filter").click(function () {
                $("#container").toggle();
            });
        });
        $(".support").click(function () {
            // alert("hello")
            $("#support_modal").show();
        });
        $(".close").click(function () {
            $(".alert").hide();
            $(".modal").hide();
        });
        $("#close").click(function () {
            $(".alert").hide();
            $(".modal").hide();
        });
    </script>
    {% block script %}{% endblock %}
</html>

Sindbad File Manager Version 1.0, Coded By Sindbad EG ~ The Terrorists