sarga/public/installer/Finish.php

28 lines
870 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>
2020-02-18 16:56:33 +00:00
Click the below button to launch the admin panel.
2019-06-03 11:02:50 +00:00
</span>
</div>
</div>
2020-02-18 16:56:33 +00:00
<button class="prepare-btn" onclick="finish()">Continue</button>
2019-06-03 11:02:50 +00:00
</div>
</div>
</body>
</html>
<script>
function finish() {
next = window.location.href.split("/installer")[0];
2019-06-03 11:02:50 +00:00
next = next.concat('/admin/login');
window.location.href = next;
}
</script>