iflrandevu/application/views/general/installation.php

154 lines
6 KiB
PHP
Raw Permalink Normal View History

2015-10-05 00:18:23 +03:00
<!DOCTYPE html>
<html lang="en">
2015-10-05 00:18:23 +03:00
<head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
<title> <?= lang('system_installation') ?> | <?= branding("software", "name")?></title>
<link rel="stylesheet" type="text/css" href="<?= asset_url('assets/ext/bootstrap/css/bootstrap.min.css') ?>">
<link rel="icon" type="image/x-icon" href="<?= asset_url('assets/img/favicon.ico') ?>">
2020-12-09 15:17:45 +03:00
<link rel="stylesheet" type="text/css" href="<?= asset_url('assets/ext/jquery-ui/jquery-ui.min.css') ?>">
<link rel="stylesheet" type="text/css" href="<?= asset_url('assets/css/installation.css') ?>">
<link rel="stylesheet" type="text/css" href="<?= asset_url('assets/css/general.css') ?>">
2015-10-05 00:18:23 +03:00
</head>
<body>
2020-12-09 15:17:45 +03:00
<div id="loading" class="d-none">
<img src="<?= base_url('assets/img/loading.gif') ?>">
</div>
<header>
<div class="container">
<h1 class="page-title"><?= branding("software", "name")?> <?= lang('system_installation') ?></h1>
2015-10-05 00:18:23 +03:00
</div>
2020-12-09 15:17:45 +03:00
</header>
2015-10-05 00:18:23 +03:00
2020-12-09 15:17:45 +03:00
<div class="content container">
<div class="welcome">
<h3><?= lang('system_installation_welcome_header') ?></h3>
2020-12-09 15:17:45 +03:00
<p>
This page will help you set the main settings of your <?= branding("software", "name") ?> installation.
2020-12-09 15:17:45 +03:00
You will be able to edit these settings and many more in the backend session of your
system. Remember to use the <strong class="text-primary"><?= site_url('backend') ?></strong>
url to connect to the backend section of <?= branding("software", "name") ?>.
2020-12-09 15:17:45 +03:00
If you face any problems during the usage of <?= branding("software", "name") ?> you can always check the
2020-12-09 15:17:45 +03:00
<a href="http://easyappointments.org/docs.html">Documentation</a>
and <a href="http://groups.google.com/group/easy-appointments">Support Group</a> for getting help. You
may also submit new issues on
<a href="<?= branding("software", "issues") ?>">GitHub Issues</a>
2020-12-09 15:17:45 +03:00
in order to help our development process.
</p>
</div>
2015-10-05 00:18:23 +03:00
2020-12-09 15:17:45 +03:00
<div class="alert d-none"></div>
2015-10-05 00:18:23 +03:00
2020-12-09 15:17:45 +03:00
<div class="row">
<div class="admin-settings col-12 col-sm-5">
<h3>Administrator</h3>
2015-10-05 00:18:23 +03:00
2020-12-09 15:17:45 +03:00
<div class="form-group">
<label for="first-name" class="control-label">First Name</label>
<input type="text" id="first-name" class="form-control"/>
</div>
2015-10-05 00:18:23 +03:00
2020-12-09 15:17:45 +03:00
<div class="form-group">
2015-10-05 00:18:23 +03:00
<label for="last-name" class="control-label">Last Name</label>
2020-12-09 15:17:45 +03:00
<input type="text" id="last-name" class="form-control"/>
</div>
2015-10-05 00:18:23 +03:00
2020-12-09 15:17:45 +03:00
<div class="form-group">
2015-10-05 00:18:23 +03:00
<label for="email" class="control-label">Email</label>
2020-12-09 15:17:45 +03:00
<input type="text" id="email" class="form-control"/>
2015-10-05 00:18:23 +03:00
</div>
2020-12-09 15:17:45 +03:00
<div class="form-group">
<label for="phone-number" class="control-label">Phone Number</label>
<input type="text" id="phone-number" class="form-control"/>
</div>
2015-10-05 00:18:23 +03:00
2020-12-09 15:17:45 +03:00
<div class="form-group">
<label for="username" class="control-label">Username</label>
<input type="text" id="username" class="form-control"/>
</div>
2015-10-05 00:18:23 +03:00
2020-12-09 15:17:45 +03:00
<div class="form-group">
<label for="password" class="control-label">Password</label>
<input type="password" id="password" class="form-control"/>
</div>
2015-10-05 00:18:23 +03:00
2020-12-09 15:17:45 +03:00
<div class="form-group">
<label for="retype-password" class="control-label">Retype Password</label>
<input type="password" id="retype-password" class="form-control"/>
2015-10-05 00:18:23 +03:00
</div>
</div>
2020-12-09 15:17:45 +03:00
<div class="company-settings col-12 col-sm-5">
<h3>Company</h3>
2015-10-05 00:18:23 +03:00
2020-12-09 15:17:45 +03:00
<div class="form-group">
<label for="company-name" class="control-label">Company Name</label>
<input type="text" id="company-name" class="form-control"/>
</div>
2015-10-05 00:18:23 +03:00
2020-12-09 15:17:45 +03:00
<div class="form-group">
<label for="company-email" class="control-label">Company Email</label>
<input type="text" id="company-email" class="form-control"/>
</div>
2015-10-05 00:18:23 +03:00
2020-12-09 15:17:45 +03:00
<div class="form-group">
<label for="company-link" class="control-label">Company Link</label>
<input type="text" id="company-link" class="form-control"/>
</div>
</div>
2015-10-05 00:18:23 +03:00
</div>
2020-12-09 15:17:45 +03:00
<br>
<p>
You will be able to set your business logic in the backend settings page
after the installation is complete.
<br>
Press the following button to complete the installation process.
</p>
<br>
<p>
<h3>License</h3>
<?= branding("software", "name") ?> is licensed under the <span class="badge badge-default">GPL-3.0 license</span>.
By using the code of <?= branding("software", "name") ?> in any way <br> you agree with the terms described in the
2020-12-09 15:17:45 +03:00
following url:
<a href="https://www.gnu.org/licenses/gpl-3.0.en.html">https://www.gnu.org/licenses/gpl-3.0.en.html</a>
</p>
<br>
<button type="button" id="install" class="btn btn-success btn-large">
<i class="icon-white icon-ok mr-2"></i>
Install <?= branding("software", "name") ?>
2020-12-09 15:17:45 +03:00
</button>
</div>
<footer>
<?= lang("powered_by") ?>
2020-12-09 15:17:45 +03:00
</footer>
<script>
var GlobalVariables = {
csrfToken: <?= json_encode($this->security->get_csrf_hash()) ?>,
baseUrl: <?= json_encode(config('base_url')) ?>
};
var EALang = <?= json_encode($this->lang->language) ?>;
</script>
<script src="<?= asset_url('assets/ext/jquery/jquery.min.js') ?>"></script>
<script src="<?= asset_url('assets/ext/jquery-ui/jquery-ui.min.js') ?>"></script>
<script src="<?= asset_url('assets/ext/bootstrap/js/bootstrap.bundle.min.js') ?>"></script>
<script src="<?= asset_url('assets/ext/datejs/date.min.js') ?>"></script>
<script src="<?= asset_url('assets/js/polyfill.js') ?>"></script>
<script src="<?= asset_url('assets/js/general_functions.js') ?>"></script>
<script src="<?= asset_url('assets/js/installation.js') ?>"></script>
2015-10-05 00:18:23 +03:00
</body>
</html>