| Server IP : 195.130.67.5 / Your IP : 216.73.217.154 Web Server : Microsoft-IIS/10.0 System : Windows NT WEBSERVER1 10.0 build 17763 (Windows Server 2016) i586 User : IUSR ( 0) PHP Version : 7.4.19 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : C:/inetpub/wwwroot/Helpdesk/application/views/global/ |
Upload File : |
<?php if (!defined("SYSTEM")) die();?>
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no" name="viewport">
<title>Τεχνική Υποστήριξη</title>
<link rel="stylesheet" href="<?php echo APP_BASE;?>theme/plugins/bootstrap/css/bootstrap.min.css" />
<link rel="stylesheet" href="<?php echo APP_BASE;?>theme/plugins/animate-css/animate.css" />
<link rel="stylesheet" href="<?php echo APP_BASE;?>theme/css/style.css" />
</head>
<body class="login-page">
<header>
<div class="container">
<div class="row">
<div class="col-md-12 text-center">
<h1>Πανεπιστημιούπολη Σερρών</h1>
<h2>Τεχνική Υποστήριξη</h2>
</div>
</div>
</div>
</header>
<div class="container">
<div class="row">
<div class="col-md-8 col-md-offset-2 col-xs-10 col-xs-offset-1 main">
<div class="col-sm-3 col-xs-12 helpdesk m-b-20"></div>
<div class="col-sm-9 col-xs-12">
<p>Θα πρέπει να συνδεθείτε με τον ιδρυματικό σας λογαριασμό για να έχετε πρόσβαση στην εφαρμογή</p>
<form id="login-form" method="POST" autocomplete="off" submiturl="<?php echo APP_BASE."login/authenticate"?>" redirecturl="<?php echo isset($redirect) ? APP_BASE.urldecode($redirect) : APP_BASE ?>" loaderurl="<?php echo APP_BASE;?>theme/images/btn-ajax-loader.gif">
<div class="input-group">
<span class="input-group-addon"><i class="glyphicon glyphicon-user"></i></span>
<input type="text" class="form-control" name="username" placeholder="Όνομα χρήστη" required>
</div>
<div class="input-group">
<span class="input-group-addon"><i class="glyphicon glyphicon-lock"></i></span>
<input type="password" class="form-control" name="password" placeholder="Κωδικός" required>
</div>
<div class="row">
<div class="col-xs-3">
<button id="btn-login" class="btn btn-primary" type="submit">ΕΙΣΟΔΟΣ</button>
</div>
<div class="col-xs-9">
<div id="loading"></div>
<?php
if (isset($_GET["redirect"])) echo '<input type="hidden" name="redirect" value="'.$_GET["redirect"].'">';
elseif (isset($_POST["redirect"])) echo '<input type="hidden" name="redirect" value="'.$_POST["redirect"].'">';
?>
</div>
</div>
</form>
</div>
</div>
</div>
</div>
<script src="<?php echo APP_BASE;?>theme/plugins/jquery/jquery.min.js"></script>
<script src="<?php echo APP_BASE;?>theme/plugins/bootstrap/js/bootstrap.js"></script>
<script src="<?php echo APP_BASE;?>theme/plugins/jquery-validation/jquery.validate.js"></script>
<script src="<?php echo APP_BASE;?>theme/plugins/jquery-validation/localization/messages_el.js"></script>
<script src="<?php echo APP_BASE;?>theme/plugins/bootstrap-notify/bootstrap-notify.js"></script>
<script src="<?php echo APP_BASE;?>theme/js/login.js"></script>
<?php
if (isset($_SESSION['message'])){
echo $_SESSION['message'];
unset ($_SESSION['message']);
}
?>
</body>
</html>