sarga/public/installer/Finish.php

28 lines
864 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() {
merge bagisto master 7b1378f (#10) * added checkbox to add empty (default) option for attributes; only show attribute labels (not admin names) on product detail view * added attribute (-related) factories; added functional test * improved usage of var/let/const; fixed error on removing row * Allow datagrid action to have target="_blank" * The {length} didn't get properly formatted I don't know if this is completely correct since I don't know this language, but for my language it said ``` Veld "Wachtwoord" moet ten minste {length} tekens bevatten ``` So the length didn't get replaced. I think the locales.js needs to change * Multiple type file error * add two events to profile index blade view * throw exception when session user is not available on product review page * check guest customer configuration * Issue #1879 and #1880 * Issue 1802. * Issue #1792 * increase maintainability by replacing hard coded class names by <Classname>::class in ProductRepository * Issue #1806 * fix: broken url sometimes when finishing installation,go to wrong application url Co-authored-by: hb-monah <58027155+hb-monah@users.noreply.github.com> Co-authored-by: Hans Schouten <account@emailo.nl> Co-authored-by: KevinLaveto <31034266+KevinLaveto@users.noreply.github.com> Co-authored-by: Jitendra Singh <39991107+jitendra-webkul@users.noreply.github.com> Co-authored-by: Shubham Mehrotra <shubhammehrotra.symfony@webkul.com> Co-authored-by: rahulshukla-webkul <42834394+rahulshukla-webkul@users.noreply.github.com>
2020-01-02 14:46:16 +00:00
next = window.location.href.split("/installer")[0];
2019-06-03 11:02:50 +00:00
next = next.concat('/admin/login');
window.location.href = next;
}
merge bagisto master 7b1378f (#10) * added checkbox to add empty (default) option for attributes; only show attribute labels (not admin names) on product detail view * added attribute (-related) factories; added functional test * improved usage of var/let/const; fixed error on removing row * Allow datagrid action to have target="_blank" * The {length} didn't get properly formatted I don't know if this is completely correct since I don't know this language, but for my language it said ``` Veld "Wachtwoord" moet ten minste {length} tekens bevatten ``` So the length didn't get replaced. I think the locales.js needs to change * Multiple type file error * add two events to profile index blade view * throw exception when session user is not available on product review page * check guest customer configuration * Issue #1879 and #1880 * Issue 1802. * Issue #1792 * increase maintainability by replacing hard coded class names by <Classname>::class in ProductRepository * Issue #1806 * fix: broken url sometimes when finishing installation,go to wrong application url Co-authored-by: hb-monah <58027155+hb-monah@users.noreply.github.com> Co-authored-by: Hans Schouten <account@emailo.nl> Co-authored-by: KevinLaveto <31034266+KevinLaveto@users.noreply.github.com> Co-authored-by: Jitendra Singh <39991107+jitendra-webkul@users.noreply.github.com> Co-authored-by: Shubham Mehrotra <shubhammehrotra.symfony@webkul.com> Co-authored-by: rahulshukla-webkul <42834394+rahulshukla-webkul@users.noreply.github.com>
2020-01-02 14:46:16 +00:00
</script>