PHP Classes

File: uploady/expire.php

Recommend this page to a friend!
  Classes of Faris AL-Otabi   Uploady PHP Upload File to MySQL   uploady/expire.php   Download  
File: uploady/expire.php
Role: Auxiliary script
Content type: text/plain
Description: Auxiliary script
Class: Uploady PHP Upload File to MySQL
Store file upload details in a MySQL database
Author: By
Last change: Update of uploady/expire.php
Date: 5 months ago
Size: 1,416 bytes
 

Contents

Class file image Download
<?php include_once 'session.php'; ?>

<?php $title = $lang["general"]['token_expired_title']; ?>

<?php include_once 'components/header.php'; ?>

<div class="container pb-5 pt-5">
    <div class="row justify-content-center text-center">
        <div class="col-sm-12 col-md-8 col-lg-5">
            <div class="card">
                <div class="card-header">
                    <b><?= $lang["general"]['token_expired_title']; ?></b>
                </div>
                <div class="card-body">
                    <div class="text-center mb-4">
                        <h4><?= $lang["general"]['token_expired_head'] ?></h4>
                    </div>
                    <p class="lead text-center">
                        <?= $lang["general"]['token_expired_msg']; ?>
</p>
                </div>
                <div class="card-footer mb-0">
                    <div class="text-center">
                        <a class="d-block small mt-3" href="forgot-password.php">
                            <?= $lang["general"]['forget_password_title'] ?>
</a>
                        <a class="d-block small" href="login.php">
                            <?= $lang["general"]['login_button'] ?>
</a>
                    </div>
                </div>
            </div>
        </div>
    </div>
</div>

<?php include_once 'components/footer.php'; ?>