2017-09-14 16:18:20 +03:00
|
|
|
<script src="<?= base_url('assets/js/backend_settings_system.js') ?>"></script>
|
|
|
|
<script src="<?= base_url('assets/js/backend_settings_user.js') ?>"></script>
|
|
|
|
<script src="<?= base_url('assets/js/backend_settings.js') ?>"></script>
|
|
|
|
<script src="<?= base_url('assets/js/working_plan.js') ?>"></script>
|
|
|
|
<script src="<?= base_url('assets/ext/jquery-ui/jquery-ui-timepicker-addon.js') ?>"></script>
|
|
|
|
<script src="<?= base_url('assets/ext/jquery-jeditable/jquery.jeditable.min.js') ?>"></script>
|
2017-09-05 15:58:34 +03:00
|
|
|
<script>
|
2015-10-05 00:50:44 +03:00
|
|
|
var GlobalVariables = {
|
2017-09-14 16:18:20 +03:00
|
|
|
'csrfToken' : <?= json_encode($this->security->get_csrf_hash()) ?>,
|
|
|
|
'baseUrl' : <?= json_encode($base_url) ?>,
|
|
|
|
'dateFormat' : <?= json_encode($date_format) ?>,
|
|
|
|
'userSlug' : <?= json_encode($role_slug) ?>,
|
2015-12-02 00:39:31 +02:00
|
|
|
'settings' : {
|
2017-09-14 16:18:20 +03:00
|
|
|
'system' : <?= json_encode($system_settings) ?>,
|
|
|
|
'user' : <?= json_encode($user_settings) ?>
|
2015-10-05 00:50:44 +03:00
|
|
|
},
|
2015-12-02 00:39:31 +02:00
|
|
|
'user' : {
|
2017-09-14 16:18:20 +03:00
|
|
|
'id' : <?= $user_id ?>,
|
|
|
|
'email' : <?= json_encode($user_email) ?>,
|
|
|
|
'role_slug' : <?= json_encode($role_slug) ?>,
|
|
|
|
'privileges': <?= json_encode($privileges) ?>
|
2015-10-05 00:50:44 +03:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
$(document).ready(function() {
|
|
|
|
BackendSettings.initialize(true);
|
|
|
|
});
|
|
|
|
</script>
|
|
|
|
|
2016-07-14 22:13:51 +03:00
|
|
|
<div id="settings-page" class="container-fluid">
|
2017-09-21 15:49:13 +03:00
|
|
|
<ul class="nav nav-tabs" role="tablist">
|
2016-07-11 23:59:38 +03:00
|
|
|
<?php if ($privileges[PRIV_SYSTEM_SETTINGS]['view'] == TRUE): ?>
|
2017-09-21 15:49:13 +03:00
|
|
|
<li role="presentation" class="active">
|
|
|
|
<a href="#general" aria-controls="general" role="tab" data-toggle="tab"><?= lang('general') ?></a>
|
|
|
|
</li>
|
2016-07-11 23:59:38 +03:00
|
|
|
<?php endif ?>
|
|
|
|
<?php if ($privileges[PRIV_SYSTEM_SETTINGS]['view'] == TRUE): ?>
|
2017-09-21 15:49:13 +03:00
|
|
|
<li role="presentation">
|
|
|
|
<a href="#business-logic" aria-controls="business-logic" role="tab" data-toggle="tab"><?= lang('business_logic') ?></a>
|
|
|
|
</li>
|
2016-07-11 23:59:38 +03:00
|
|
|
<?php endif ?>
|
|
|
|
<?php if ($privileges[PRIV_USER_SETTINGS]['view'] == TRUE): ?>
|
2017-09-21 15:49:13 +03:00
|
|
|
<li role="presentation">
|
|
|
|
<a href="#current-user" aria-controls="current-user" role="tab" data-toggle="tab"><?= lang('current_user') ?></a>
|
|
|
|
</li>
|
2016-07-11 23:59:38 +03:00
|
|
|
<?php endif ?>
|
2017-09-21 15:49:13 +03:00
|
|
|
<li role="presentation">
|
|
|
|
<a href="#about-ea" aria-controls="about-ea" role="tab" data-toggle="tab"><?= lang('about_ea') ?></a>
|
|
|
|
</li>
|
2015-10-05 00:50:44 +03:00
|
|
|
</ul>
|
|
|
|
|
2017-09-21 15:49:13 +03:00
|
|
|
<div class="tab-content">
|
|
|
|
|
|
|
|
<!-- GENERAL TAB -->
|
|
|
|
|
|
|
|
<?php $hidden = ($privileges[PRIV_SYSTEM_SETTINGS]['view'] == TRUE) ? '' : 'hidden' ?>
|
|
|
|
<div role="tabpanel" class="tab-pane active <?= $hidden ?>" id="general">
|
|
|
|
<form>
|
|
|
|
<fieldset>
|
|
|
|
<legend>
|
|
|
|
<?= lang('general_settings') ?>
|
|
|
|
<?php if ($privileges[PRIV_SYSTEM_SETTINGS]['edit'] == TRUE): ?>
|
|
|
|
<button type="button" class="save-settings btn btn-primary btn-xs"
|
|
|
|
title="<?= lang('save') ?>">
|
|
|
|
<span class="glyphicon glyphicon-floppy-disk"></span>
|
|
|
|
<?= lang('save') ?>
|
|
|
|
</button>
|
|
|
|
<?php endif ?>
|
|
|
|
</legend>
|
|
|
|
|
|
|
|
<div class="wrapper row">
|
|
|
|
<div class="col-md-6">
|
|
|
|
<div class="form-group">
|
|
|
|
<label for="company-name"><?= lang('company_name') ?> *</label>
|
|
|
|
<input type="text" id="company-name" data-field="company_name" class="required form-control">
|
|
|
|
<span class="help-block">
|
2017-09-14 16:18:20 +03:00
|
|
|
<?= lang('company_name_hint') ?>
|
2015-10-07 22:38:14 +03:00
|
|
|
</span>
|
2017-09-21 15:49:13 +03:00
|
|
|
</div>
|
2015-10-05 00:50:44 +03:00
|
|
|
|
2017-09-21 15:49:13 +03:00
|
|
|
<div class="form-group">
|
|
|
|
<label for="company-email"><?= lang('company_email') ?> *</label>
|
|
|
|
<input type="text" id="company-email" data-field="company_email" class="required form-control">
|
|
|
|
<span class="help-block">
|
2017-09-14 16:18:20 +03:00
|
|
|
<?= lang('company_email_hint') ?>
|
2015-10-07 22:38:14 +03:00
|
|
|
</span>
|
2017-09-21 15:49:13 +03:00
|
|
|
</div>
|
2015-10-05 00:50:44 +03:00
|
|
|
|
2017-09-21 15:49:13 +03:00
|
|
|
<div class="form-group">
|
|
|
|
<label for="company-link"><?= lang('company_link') ?> *</label>
|
|
|
|
<input type="text" id="company-link" data-field="company_link" class="required form-control">
|
|
|
|
<span class="help-block">
|
2017-09-14 16:18:20 +03:00
|
|
|
<?= lang('company_link_hint') ?>
|
2015-10-07 22:38:14 +03:00
|
|
|
</span>
|
2017-09-21 15:49:13 +03:00
|
|
|
</div>
|
2015-10-07 22:38:14 +03:00
|
|
|
</div>
|
2017-09-21 15:49:13 +03:00
|
|
|
<div class="col-md-6">
|
|
|
|
<div class="form-group">
|
|
|
|
<label for="google-analytics-code">
|
|
|
|
Google Analytics ID</label>
|
|
|
|
<input type="text" id="google-analytics-code" placeholder="UA-XXXXXXXX-X"
|
|
|
|
data-field="google_analytics_code" class="form-control">
|
|
|
|
<span class="help-block">
|
2017-09-14 16:18:20 +03:00
|
|
|
<?= lang('google_analytics_code_hint') ?>
|
2015-12-13 23:48:48 +02:00
|
|
|
</span>
|
2017-09-21 15:49:13 +03:00
|
|
|
</div>
|
|
|
|
<div class="form-group">
|
|
|
|
<label for="date-format">
|
|
|
|
<?= lang('date_format') ?>
|
|
|
|
</label>
|
|
|
|
<select class="form-control" id="date-format" data-field="date_format">
|
|
|
|
<option value="DMY">DMY</option>
|
|
|
|
<option value="MDY">MDY</option>
|
|
|
|
<option value="YMD">YMD</option>
|
|
|
|
</select>
|
|
|
|
<span class="help-block">
|
2017-09-14 16:18:20 +03:00
|
|
|
<?= lang('date_format_hint') ?>
|
2015-12-13 23:48:48 +02:00
|
|
|
</span>
|
2017-09-21 15:49:13 +03:00
|
|
|
</div>
|
|
|
|
<div class="form-group">
|
|
|
|
<label><?= lang('customer_notifications') ?></label>
|
|
|
|
<br>
|
|
|
|
<button type="button" id="customer-notifications" class="btn btn-default" data-toggle="button" aria-pressed="false">
|
|
|
|
<span class="glyphicon glyphicon-envelope"></span>
|
|
|
|
<?= lang('receive_notifications') ?>
|
|
|
|
</button>
|
|
|
|
<span class="help-block">
|
2017-09-14 16:18:20 +03:00
|
|
|
<?= lang('customer_notifications_hint') ?>
|
2016-01-01 21:40:10 +02:00
|
|
|
</span>
|
2017-09-21 15:49:13 +03:00
|
|
|
</div>
|
|
|
|
<div class="form-group">
|
|
|
|
<label for="require-captcha">
|
|
|
|
CAPTCHA
|
|
|
|
</label>
|
|
|
|
<br>
|
|
|
|
<button type="button" id="require-captcha" class="btn btn-default" data-toggle="button" aria-pressed="false">
|
|
|
|
<span class="glyphicon glyphicon-lock"></span>
|
|
|
|
<?= lang('require_captcha') ?>
|
|
|
|
</button>
|
|
|
|
<span class="help-block">
|
2017-09-14 16:18:20 +03:00
|
|
|
<?= lang('require_captcha_hint') ?>
|
2015-12-30 13:34:18 +02:00
|
|
|
</span>
|
2017-09-21 15:49:13 +03:00
|
|
|
</div>
|
2015-12-30 13:34:18 +02:00
|
|
|
</div>
|
2015-10-07 22:38:14 +03:00
|
|
|
</div>
|
2017-09-21 15:49:13 +03:00
|
|
|
</fieldset>
|
|
|
|
</form>
|
|
|
|
</div>
|
2015-10-05 00:50:44 +03:00
|
|
|
|
2017-09-21 15:49:13 +03:00
|
|
|
<!-- BUSINESS LOGIC TAB -->
|
|
|
|
|
|
|
|
<?php $hidden = ($privileges[PRIV_SYSTEM_SETTINGS]['view'] == TRUE) ? '' : 'hidden' ?>
|
|
|
|
<div role="tabpanel" class="tab-pane <?= $hidden ?>" id="business-logic">
|
|
|
|
<form>
|
|
|
|
<fieldset>
|
|
|
|
<legend>
|
|
|
|
<?= lang('business_logic') ?>
|
|
|
|
<?php if ($privileges[PRIV_SYSTEM_SETTINGS]['edit'] == TRUE): ?>
|
|
|
|
<button type="button" class="save-settings btn btn-primary btn-xs"
|
|
|
|
title="<?= lang('save') ?>">
|
|
|
|
<span class="glyphicon glyphicon-floppy-disk"></span>
|
|
|
|
<?= lang('save') ?>
|
|
|
|
</button>
|
|
|
|
<?php endif ?>
|
|
|
|
</legend>
|
2015-10-05 00:50:44 +03:00
|
|
|
|
2017-09-21 15:49:13 +03:00
|
|
|
<div class="row">
|
|
|
|
<div class="col-md-7 working-plan-wrapper">
|
|
|
|
<h4><?= lang('working_plan') ?></h4>
|
|
|
|
<span class="help-block">
|
2017-09-14 16:18:20 +03:00
|
|
|
<?= lang('edit_working_plan_hint') ?>
|
2015-10-05 00:50:44 +03:00
|
|
|
</span>
|
|
|
|
|
2017-09-21 15:49:13 +03:00
|
|
|
<table class="working-plan table table-striped">
|
|
|
|
<thead>
|
2015-10-05 00:50:44 +03:00
|
|
|
<tr>
|
2017-09-14 16:18:20 +03:00
|
|
|
<th><?= lang('day') ?></th>
|
|
|
|
<th><?= lang('start') ?></th>
|
|
|
|
<th><?= lang('end') ?></th>
|
2015-10-05 00:50:44 +03:00
|
|
|
</tr>
|
2017-09-21 15:49:13 +03:00
|
|
|
</thead>
|
|
|
|
<tbody>
|
2015-10-05 00:50:44 +03:00
|
|
|
<tr>
|
|
|
|
<td>
|
|
|
|
<div class="checkbox">
|
|
|
|
<label>
|
|
|
|
<input type="checkbox" id="monday" />
|
2017-09-21 15:49:13 +03:00
|
|
|
<?= lang('monday') ?>
|
2015-10-05 00:50:44 +03:00
|
|
|
</label>
|
|
|
|
</div>
|
|
|
|
</td>
|
|
|
|
<td><input type="text" id="monday-start" class="work-start" /></td>
|
|
|
|
<td><input type="text" id="monday-end" class="work-end" /></td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td>
|
|
|
|
<div class="checkbox">
|
|
|
|
<label>
|
|
|
|
<input type="checkbox" id="tuesday" />
|
2017-09-21 15:49:13 +03:00
|
|
|
<?= lang('tuesday') ?>
|
2015-10-05 00:50:44 +03:00
|
|
|
</label>
|
|
|
|
</div>
|
|
|
|
</td>
|
|
|
|
<td><input type="text" id="tuesday-start" class="work-start" /></td>
|
|
|
|
<td><input type="text" id="tuesday-end" class="work-end" /></td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td>
|
|
|
|
<div class="checkbox">
|
|
|
|
<label>
|
|
|
|
<input type="checkbox" id="wednesday" />
|
2017-09-21 15:49:13 +03:00
|
|
|
<?= lang('wednesday') ?>
|
2015-10-05 00:50:44 +03:00
|
|
|
</label>
|
|
|
|
</div>
|
|
|
|
</td>
|
|
|
|
<td><input type="text" id="wednesday-start" class="work-start" /></td>
|
|
|
|
<td><input type="text" id="wednesday-end" class="work-end" /></td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td>
|
|
|
|
<div class="checkbox">
|
|
|
|
<label>
|
|
|
|
<input type="checkbox" id="thursday" />
|
2017-09-21 15:49:13 +03:00
|
|
|
<?= lang('thursday') ?>
|
2015-10-05 00:50:44 +03:00
|
|
|
</label>
|
|
|
|
</div>
|
|
|
|
</td>
|
|
|
|
<td><input type="text" id="thursday-start" class="work-start" /></td>
|
|
|
|
<td><input type="text" id="thursday-end" class="work-end" /></td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td>
|
|
|
|
<div class="checkbox">
|
|
|
|
<label>
|
|
|
|
<input type="checkbox" id="friday" />
|
2017-09-21 15:49:13 +03:00
|
|
|
<?= lang('friday') ?>
|
2015-10-05 00:50:44 +03:00
|
|
|
</label>
|
|
|
|
</div>
|
|
|
|
</td>
|
|
|
|
<td><input type="text" id="friday-start" class="work-start" /></td>
|
|
|
|
<td><input type="text" id="friday-end" class="work-end" /></td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td>
|
|
|
|
<div class="checkbox">
|
|
|
|
<label>
|
|
|
|
<input type="checkbox" id="saturday" />
|
2017-09-21 15:49:13 +03:00
|
|
|
<?= lang('saturday') ?>
|
2015-10-05 00:50:44 +03:00
|
|
|
</label>
|
|
|
|
</div>
|
|
|
|
</td>
|
|
|
|
<td><input type="text" id="saturday-start" class="work-start" /></td>
|
|
|
|
<td><input type="text" id="saturday-end" class="work-end" /></td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td>
|
|
|
|
<div class="checkbox">
|
|
|
|
<label>
|
|
|
|
<input type="checkbox" id="sunday" />
|
2017-09-21 15:49:13 +03:00
|
|
|
<?= lang('sunday') ?>
|
2015-10-05 00:50:44 +03:00
|
|
|
</label>
|
|
|
|
</div>
|
|
|
|
</td>
|
|
|
|
<td><input type="text" id="sunday-start" class="work-start" /></td>
|
|
|
|
<td><input type="text" id="sunday-end" class="work-end" /></td>
|
|
|
|
</tr>
|
2017-09-21 15:49:13 +03:00
|
|
|
</tbody>
|
|
|
|
</table>
|
2015-10-05 00:50:44 +03:00
|
|
|
|
2017-09-21 15:49:13 +03:00
|
|
|
<br>
|
2015-10-05 00:50:44 +03:00
|
|
|
|
2017-09-21 15:49:13 +03:00
|
|
|
<h4><?= lang('book_advance_timeout') ?></h4>
|
|
|
|
<span class="help-block">
|
2017-09-14 16:18:20 +03:00
|
|
|
<?= lang('book_advance_timeout_hint') ?>
|
2015-10-05 00:50:44 +03:00
|
|
|
</span>
|
2017-09-21 15:49:13 +03:00
|
|
|
<div class="form-group">
|
|
|
|
<label for="book-advance-timeout"><?= lang('timeout_minutes') ?></label>
|
|
|
|
<input type="text" id="book-advance-timeout" data-field="book_advance_timeout" class="form-control" />
|
|
|
|
</div>
|
2015-10-05 00:50:44 +03:00
|
|
|
</div>
|
2017-09-21 15:49:13 +03:00
|
|
|
<div class="col-md-5 breaks-wrapper">
|
|
|
|
<h4><?= lang('breaks') ?></h4>
|
2015-10-05 00:50:44 +03:00
|
|
|
|
2017-09-21 15:49:13 +03:00
|
|
|
<span class="help-block">
|
2017-09-14 16:18:20 +03:00
|
|
|
<?= lang('edit_breaks_hint') ?>
|
2015-10-05 00:50:44 +03:00
|
|
|
</span>
|
|
|
|
|
2017-09-21 15:49:13 +03:00
|
|
|
<div>
|
|
|
|
<button type="button" class="add-break btn btn-primary">
|
|
|
|
<span class="glyphicon glyphicon-white glyphicon glyphicon-plus"></span>
|
|
|
|
<?= lang('add_break');?>
|
|
|
|
</button>
|
|
|
|
</div>
|
2015-10-05 00:50:44 +03:00
|
|
|
|
2017-09-21 15:49:13 +03:00
|
|
|
<br>
|
2015-10-05 00:50:44 +03:00
|
|
|
|
2017-09-21 15:49:13 +03:00
|
|
|
<table class="breaks table table-striped">
|
|
|
|
<thead>
|
2015-10-05 00:50:44 +03:00
|
|
|
<tr>
|
2017-09-14 16:18:20 +03:00
|
|
|
<th><?= lang('day') ?></th>
|
|
|
|
<th><?= lang('start') ?></th>
|
|
|
|
<th><?= lang('end') ?></th>
|
|
|
|
<th><?= lang('actions') ?></th>
|
2015-10-05 00:50:44 +03:00
|
|
|
</tr>
|
2017-09-21 15:49:13 +03:00
|
|
|
</thead>
|
|
|
|
<tbody>
|
|
|
|
</tbody>
|
|
|
|
</table>
|
|
|
|
</div>
|
2015-10-05 00:50:44 +03:00
|
|
|
</div>
|
2017-09-21 15:49:13 +03:00
|
|
|
</fieldset>
|
|
|
|
</form>
|
|
|
|
</div>
|
2015-10-05 00:50:44 +03:00
|
|
|
|
2017-09-21 15:49:13 +03:00
|
|
|
<!-- CURRENT USER TAB -->
|
2015-10-05 00:50:44 +03:00
|
|
|
|
2017-09-21 15:49:13 +03:00
|
|
|
<?php $hidden = ($privileges[PRIV_USER_SETTINGS]['view'] == TRUE) ? '' : 'hidden' ?>
|
|
|
|
<div role="tabpanel" class="tab-pane <?= $hidden ?>" id="current-user">
|
|
|
|
<form>
|
|
|
|
<div class="row">
|
|
|
|
<fieldset class="col-xs-12 col-sm-6 personal-info-wrapper">
|
|
|
|
<legend>
|
|
|
|
<?= lang('personal_information') ?>
|
|
|
|
<?php if ($privileges[PRIV_USER_SETTINGS]['edit'] == TRUE): ?>
|
|
|
|
<button type="button" class="save-settings btn btn-primary btn-xs"
|
|
|
|
title="<?= lang('save') ?>">
|
|
|
|
<span class="glyphicon glyphicon-floppy-disk"></span>
|
|
|
|
<?= lang('save') ?>
|
|
|
|
</button>
|
|
|
|
<?php endif ?>
|
|
|
|
</legend>
|
|
|
|
|
|
|
|
<input type="hidden" id="user-id" />
|
2015-10-05 00:50:44 +03:00
|
|
|
|
2017-09-21 15:49:13 +03:00
|
|
|
<div class="form-group">
|
|
|
|
<label for="first-name"><?= lang('first_name') ?> *</label>
|
|
|
|
<input type="text" id="first-name" class="form-control required" />
|
|
|
|
</div>
|
2015-10-05 00:50:44 +03:00
|
|
|
|
2017-09-21 15:49:13 +03:00
|
|
|
<div class="form-group">
|
|
|
|
<label for="last-name"><?= lang('last_name') ?> *</label>
|
|
|
|
<input type="text" id="last-name" class="form-control required" />
|
|
|
|
</div>
|
2015-10-05 00:50:44 +03:00
|
|
|
|
2017-09-21 15:49:13 +03:00
|
|
|
<div class="form-group">
|
|
|
|
<label for="email"><?= lang('email') ?> *</label>
|
|
|
|
<input type="text" id="email" class="form-control required" />
|
|
|
|
</div>
|
2015-10-05 00:50:44 +03:00
|
|
|
|
2017-09-21 15:49:13 +03:00
|
|
|
<div class="form-group">
|
|
|
|
<label for="phone-number"><?= lang('phone_number') ?> *</label>
|
|
|
|
<input type="text" id="phone-number" class="form-control required" />
|
|
|
|
</div>
|
2015-10-05 00:50:44 +03:00
|
|
|
|
2017-09-21 15:49:13 +03:00
|
|
|
<div class="form-group">
|
|
|
|
<label for="mobile-number"><?= lang('mobile_number') ?></label>
|
|
|
|
<input type="text" id="mobile-number" class="form-control" />
|
|
|
|
</div>
|
2015-10-05 00:50:44 +03:00
|
|
|
|
2017-09-21 15:49:13 +03:00
|
|
|
<div class="form-group">
|
|
|
|
<label for="address"><?= lang('address') ?></label>
|
|
|
|
<input type="text" id="address" class="form-control" />
|
|
|
|
</div>
|
2015-10-05 00:50:44 +03:00
|
|
|
|
2017-09-21 15:49:13 +03:00
|
|
|
<div class="form-group">
|
|
|
|
<label for="city"><?= lang('city') ?></label>
|
|
|
|
<input type="text" id="city" class="form-control" />
|
|
|
|
</div>
|
2015-10-05 00:50:44 +03:00
|
|
|
|
2017-09-21 15:49:13 +03:00
|
|
|
<div class="form-group">
|
|
|
|
<label for="state"><?= lang('state') ?></label>
|
|
|
|
<input type="text" id="state" class="form-control" />
|
|
|
|
</div>
|
2015-10-05 00:50:44 +03:00
|
|
|
|
2017-09-21 15:49:13 +03:00
|
|
|
<div class="form-group">
|
|
|
|
<label for="zip-code"><?= lang('zip_code') ?></label>
|
|
|
|
<input type="text" id="zip-code" class="form-control" />
|
|
|
|
</div>
|
2015-10-05 00:50:44 +03:00
|
|
|
|
2017-09-21 15:49:13 +03:00
|
|
|
<div class="form-group">
|
|
|
|
<label for="notes"><?= lang('notes') ?></label>
|
|
|
|
<textarea id="notes" class="form-control" rows="3"></textarea>
|
|
|
|
</div>
|
|
|
|
</fieldset>
|
2015-10-05 00:50:44 +03:00
|
|
|
|
2017-09-21 15:49:13 +03:00
|
|
|
<fieldset class="col-xs-12 col-sm-6 miscellaneous-wrapper">
|
|
|
|
<legend><?= lang('system_login') ?></legend>
|
2015-10-05 00:50:44 +03:00
|
|
|
|
2017-09-21 15:49:13 +03:00
|
|
|
<div class="form-group">
|
|
|
|
<label for="username"><?= lang('username') ?> *</label>
|
|
|
|
<input type="text" id="username" class="form-control required" />
|
|
|
|
</div>
|
2015-10-05 00:50:44 +03:00
|
|
|
|
2017-09-21 15:49:13 +03:00
|
|
|
<div class="form-group">
|
|
|
|
<label for="password"><?= lang('password') ?></label>
|
|
|
|
<input type="password" id="password" class="form-control" />
|
|
|
|
</div>
|
2015-10-05 00:50:44 +03:00
|
|
|
|
2017-09-21 15:49:13 +03:00
|
|
|
<div class="form-group">
|
|
|
|
<label for="retype-password"><?= lang('retype_password') ?></label>
|
|
|
|
<input type="password" id="retype-password" class="form-control" />
|
|
|
|
</div>
|
2015-10-05 00:50:44 +03:00
|
|
|
|
2017-09-21 15:49:13 +03:00
|
|
|
<div class="form-group">
|
|
|
|
<label for="calendar-view"><?= lang('calendar') ?> *</label>
|
|
|
|
<select id="calendar-view" class="form-control required">
|
|
|
|
<option value="default">Default</option>
|
|
|
|
<option value="table">Table</option>
|
|
|
|
</select>
|
|
|
|
</div>
|
2016-07-19 00:46:15 +03:00
|
|
|
|
2017-09-21 15:49:13 +03:00
|
|
|
<button type="button" id="user-notifications" class="btn btn-default" data-toggle="button">
|
|
|
|
<span class="glyphicon glyphicon-envelope"></span>
|
|
|
|
<?= lang('receive_notifications') ?>
|
|
|
|
</button>
|
|
|
|
</fieldset>
|
|
|
|
</div>
|
|
|
|
</form>
|
|
|
|
</div>
|
2015-10-05 00:50:44 +03:00
|
|
|
|
2017-09-21 15:49:13 +03:00
|
|
|
<!-- ABOUT E!A TAB -->
|
|
|
|
|
|
|
|
<div role="tabpanel" class="tab-pane" id="about-ea">
|
|
|
|
<h3>Easy!Appointments</h3>
|
|
|
|
<p>
|
|
|
|
<?= lang('about_ea_info') ?>
|
|
|
|
</p>
|
|
|
|
|
|
|
|
<br>
|
|
|
|
|
|
|
|
<div class="current-version">
|
|
|
|
<?= lang('current_version') ?>
|
|
|
|
<?= $this->config->item('version') ?>
|
|
|
|
<?php if ($this->config->item('release_label')): ?>
|
|
|
|
- <?= $this->config->item('release_label') ?>
|
|
|
|
<?php endif ?>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<br>
|
|
|
|
|
|
|
|
<h3><?= lang('support') ?></h3>
|
|
|
|
<p>
|
|
|
|
<?= lang('about_ea_support') ?>
|
|
|
|
|
|
|
|
<br><br>
|
|
|
|
|
|
|
|
<a href="http://easyappointments.org">
|
|
|
|
<?= lang('official_website') ?>
|
|
|
|
</a>
|
|
|
|
|
|
|
|
|
<a href="https://groups.google.com/forum/#!forum/easy-appointments">
|
|
|
|
<?= lang('support_group') ?>
|
|
|
|
</a>
|
|
|
|
|
|
|
|
|
<a href="https://github.com/alextselegidis/easyappointments/issues">
|
|
|
|
<?= lang('project_issues') ?>
|
|
|
|
</a>
|
|
|
|
|
|
|
|
|
<a href="http://easyappointments.wordpress.com">
|
|
|
|
E!A Blog
|
|
|
|
</a>
|
|
|
|
|
|
|
|
|
<a href="https://www.facebook.com/easyappointments.org">
|
|
|
|
Facebook
|
|
|
|
</a>
|
|
|
|
|
|
|
|
|
<a href="https://plus.google.com/+EasyappointmentsOrg">
|
|
|
|
Google+
|
|
|
|
</a>
|
|
|
|
|
|
|
|
|
<a href="https://twitter.com/EasyAppts">
|
|
|
|
Twitter
|
|
|
|
</a>
|
|
|
|
|
|
|
|
|
<a href="https://plus.google.com/communities/105333709485142846840">
|
|
|
|
<?= lang('google_plus_community') ?>
|
|
|
|
</a>
|
|
|
|
</p>
|
|
|
|
|
|
|
|
<br>
|
|
|
|
|
|
|
|
<h3><?= lang('license') ?></h3>
|
|
|
|
<p>
|
|
|
|
<?= lang('about_ea_license') ?>
|
|
|
|
<a href="http://www.gnu.org/copyleft/gpl.html">http://www.gnu.org/copyleft/gpl.html</a>
|
|
|
|
</p>
|
2015-10-05 00:50:44 +03:00
|
|
|
</div>
|
|
|
|
|
|
|
|
</div>
|
|
|
|
</div>
|