Server IP : 103.11.96.170 / Your IP : 18.218.146.21 Web Server : Microsoft-IIS/10.0 System : Windows NT WIN-F6SLGVICLOP 10.0 build 17763 (Windows Server 2016) AMD64 User : elibrary.unsap.ac.id ( 0) PHP Version : 7.4.19 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF Directory (0777) : D:/localhost/elibrary/lib/../installxx/ |
[ Home ] | [ C0mmand ] | [ Upload File ] |
---|
<?php /** * @Created by : Waris Agung Widodo (ido.alit@gmail.com) * @Date : 2020-01-10 08:01 * @File name : index.php */ if (file_exists(__DIR__ . '/../config/sysconfig.local.inc.php')) { header('Location: ' . '../index.php'); exit(); } session_start(); $length = 24; $_SESSION['csrf_token'] = bin2hex(substr(str_shuffle(str_repeat($x='0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ', ceil($length/strlen($x)) )),1,$length)); ?> <!doctype html> <html lang="en"> <head> <!-- Required meta tags --> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no"> <link rel="shortcut icon" href="../webicon.ico" type="image/x-icon"/> <!-- Bootstrap CSS --> <link rel="stylesheet" href="css/tailwind.min.css"> <title>SLiMS Installer</title> <style> .slims-version { transform: rotate(-90deg); transform-origin: top left; text-align: left; height: 24px; line-height: 24px; width: 400px; position: absolute; left: 1.5rem; bottom: 0; color: white; letter-spacing: 0.5em; font-size: 10px; padding-left: 60px; } .slims-version:before { content: " "; position: absolute; left: 0; top: 12px; height: 1px; width: 50px; background-color: white; } .slims-version .slims-dash { height: 1px; width: 15px; background-color: white; display: inline-block; } .lds-dual-ring { display: inline-block; width: 20px; height: 20px; } .lds-dual-ring:after { content: " "; display: block; width: 17px; height: 17px; margin: 1px; border-radius: 50%; border: 2px solid #fff; border-color: #fff transparent #fff transparent; animation: lds-dual-ring 1s linear infinite; } @keyframes lds-dual-ring { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } } </style> </head> <body> <div id="app" class="bg-gray-800 font-light"> <welcome v-if="section === 'welcome'" @click="section = 'system'"></welcome> <system v-if="section === 'system'" @click="section = 'select-task'"></system> <tasks v-if="section === 'select-task'" @click="selectTask"></tasks> <install v-if="section === 'install'" @next="section = 'create-admin'"></install> <upgrade v-if="section === 'upgrade'" @next="section = 'select-version'"></upgrade> <select-version v-if="section === 'select-version'" @success="section = 'success'"></select-version> <account v-if="section === 'create-admin'" @notwrite="setSection('show-config', 'create-admin')" @success="section = 'success'"></account> <show-config v-if="section === 'show-config'" :section="lastSection"></show-config> <success v-if="section === 'success'"></success> </div> <!-- Required JavaScript --> <script src="js/vue.min.js"></script> <script src="js/main.js?v=<? date('YmdHis'); ?>" type="module" csrf="<?= $_SESSION['csrf_token'] ?>"></script> </body> </html>