sarga/public/installer/Finish.php

34 lines
970 B
PHP
Raw Normal View History

<html>
<body>
<div class="container finish" id="finish">
2019-03-20 04:59:13 +00:00
<div class="initial-display">
<p>Finish Installment</p>
<div class="content">
<div class="content-container" style="padding: 20px">
<span>
Bagisto is successfully installed on your system. Click the below button to launch Admin Panel.
</span>
</div>
</div>
<button class="prepare-btn" onclick="finish()">Finish</button>
</div>
</div>
</body>
</html>
<script>
function finish() {
lastIndex = window.location.href.lastIndexOf("/");
2019-03-20 04:59:13 +00:00
secondlast = window.location.href.slice(0, lastIndex).lastIndexOf("/");
next = window.location.href.slice(0, secondlast);
next = next.concat('/admin/login');
window.location.href = next;
}
</script>