28 lines
864 B
PHP
Executable File
28 lines
864 B
PHP
Executable File
<html>
|
|
<body>
|
|
<div class="container finish" id="finish">
|
|
<div class="initial-display">
|
|
<p>Installation completed</p>
|
|
<div class="content">
|
|
<div class="content-container" style="padding: 20px">
|
|
<span>
|
|
Bagisto is successfully installed on your system.<br>
|
|
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() {
|
|
next = window.location.href.split("/installer")[0];
|
|
next = next.concat('/admin/login');
|
|
window.location.href = next;
|
|
}
|
|
</script>
|