sarga/public/installer/Finish.php

29 lines
1000 B
PHP
Raw Normal View History

2019-06-03 11:02:50 +00:00
<html>
<body>
<div class="container finish" id="finish">
<div class="initial-display">
2019-09-19 14:18:34 +00:00
<p>Installation completed</p>
2019-06-03 11:02:50 +00:00
<div class="content">
<div class="content-container" style="padding: 20px">
<span>
2019-09-19 14:18:34 +00:00
Bagisto is successfully installed on your system.<br>
Click the below button to launch Admin Panel.
2019-06-03 11:02:50 +00:00
</span>
</div>
</div>
<button class="prepare-btn" onclick="finish()">Finish</button>
</div>
</div>
</body>
</html>
<script>
function finish() {
lastIndex = window.location.href.lastIndexOf("/");
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>