2021-12-06 11:00:02 +03:00
|
|
|
<?php extend('layouts/backend_layout') ?>
|
2021-11-22 09:36:05 +03:00
|
|
|
|
|
|
|
<?php section('content') ?>
|
|
|
|
|
2021-12-18 20:55:27 +03:00
|
|
|
<div id="account-page" class="container backend-page">
|
|
|
|
<div id="account">
|
2021-12-18 21:16:22 +03:00
|
|
|
<div class="row">
|
|
|
|
<div class="col-lg-8 offset-lg-2">
|
|
|
|
<form>
|
|
|
|
<fieldset>
|
|
|
|
<legend class="d-flex justify-content-between align-items-center border-bottom mb-4 py-2">
|
2022-07-26 16:46:52 +03:00
|
|
|
<?= lang('account') ?>
|
2021-12-18 21:16:22 +03:00
|
|
|
|
|
|
|
<?php if (can('edit', PRIV_USER_SETTINGS)): ?>
|
2022-01-24 14:55:45 +03:00
|
|
|
<button type="button" id="save-settings" class="btn btn-primary">
|
2021-12-18 21:16:22 +03:00
|
|
|
<i class="fas fa-check-square me-2"></i>
|
|
|
|
<?= lang('save') ?>
|
|
|
|
</button>
|
|
|
|
<?php endif ?>
|
|
|
|
</legend>
|
|
|
|
|
|
|
|
<div class="row">
|
|
|
|
<div class="col-lg-6">
|
|
|
|
<input type="hidden" id="user-id">
|
|
|
|
|
|
|
|
<div class="mb-3">
|
|
|
|
<label class="form-label" for="first-name">
|
|
|
|
<?= lang('first_name') ?>
|
|
|
|
<span class="text-danger">*</span>
|
|
|
|
</label>
|
|
|
|
<input id="first-name" class="form-control required">
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="mb-3">
|
|
|
|
<label class="form-label" for="last-name">
|
|
|
|
<?= lang('last_name') ?>
|
|
|
|
<span class="text-danger">*</span>
|
|
|
|
</label>
|
|
|
|
<input id="last-name" class="form-control required">
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="mb-3">
|
|
|
|
<label class="form-label" for="email">
|
|
|
|
<?= lang('email') ?>
|
|
|
|
<span class="text-danger">*</span>
|
|
|
|
</label>
|
|
|
|
<input id="email" class="form-control required">
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="mb-3">
|
|
|
|
<label class="form-label" for="phone-number">
|
|
|
|
<?= lang('phone_number') ?>
|
|
|
|
<span class="text-danger">*</span>
|
|
|
|
</label>
|
|
|
|
<input id="phone-number" class="form-control required">
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="mb-3">
|
|
|
|
<label class="form-label" for="mobile-number">
|
|
|
|
<?= lang('mobile_number') ?>
|
|
|
|
</label>
|
|
|
|
<input id="mobile-number" class="form-control">
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="mb-3">
|
|
|
|
<label class="form-label" for="address">
|
|
|
|
<?= lang('address') ?>
|
|
|
|
</label>
|
|
|
|
<input id="address" class="form-control">
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="mb-3">
|
|
|
|
<label class="form-label" for="city">
|
|
|
|
<?= lang('city') ?>
|
|
|
|
</label>
|
|
|
|
<input id="city" class="form-control">
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="mb-3">
|
|
|
|
<label class="form-label" for="state">
|
|
|
|
<?= lang('state') ?>
|
|
|
|
</label>
|
|
|
|
<input id="state" class="form-control">
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="mb-3">
|
|
|
|
<label class="form-label" for="zip-code">
|
|
|
|
<?= lang('zip_code') ?>
|
|
|
|
</label>
|
|
|
|
<input id="zip-code" class="form-control">
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="mb-3">
|
|
|
|
<label class="form-label" for="notes">
|
|
|
|
<?= lang('notes') ?>
|
|
|
|
</label>
|
|
|
|
<textarea id="notes" class="form-control" rows="3"></textarea>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="col-lg-6">
|
|
|
|
<div class="mb-3">
|
|
|
|
<label class="form-label" for="username">
|
|
|
|
<?= lang('username') ?>
|
|
|
|
<span class="text-danger">*</span>
|
|
|
|
</label>
|
|
|
|
<input id="username" class="form-control required">
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="mb-3">
|
|
|
|
<label class="form-label" for="password">
|
|
|
|
<?= lang('password') ?>
|
|
|
|
</label>
|
|
|
|
<input type="password" id="password" class="form-control" autocomplete="new-password">
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="mb-3">
|
|
|
|
<label class="form-label" for="retype-password">
|
|
|
|
<?= lang('retype_password') ?>
|
|
|
|
</label>
|
|
|
|
<input type="password" id="retype-password" class="form-control"
|
|
|
|
autocomplete="new-password">
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="mb-3">
|
|
|
|
<label class="form-label" for="calendar-view"><?= lang('calendar') ?>
|
|
|
|
<span class="text-danger">*</span>
|
|
|
|
</label>
|
|
|
|
<select id="calendar-view" class="form-control required">
|
|
|
|
<option value="default">Default</option>
|
|
|
|
<option value="table">Table</option>
|
|
|
|
</select>
|
|
|
|
</div>
|
|
|
|
|
2022-05-20 19:13:26 +03:00
|
|
|
<div class="mb-3">
|
|
|
|
<label class="form-label" for="language">
|
|
|
|
<?= lang('language') ?>
|
|
|
|
<span class="text-danger" hidden>*</span>
|
|
|
|
</label>
|
|
|
|
<select id="language" class="form-control required">
|
|
|
|
<?php foreach (vars('available_languages') as $available_language): ?>
|
|
|
|
<option value="<?= $available_language ?>">
|
|
|
|
<?= ucfirst($available_language) ?>
|
|
|
|
</option>
|
|
|
|
<?php endforeach ?>
|
|
|
|
</select>
|
|
|
|
</div>
|
|
|
|
|
2021-12-18 21:16:22 +03:00
|
|
|
<div class="mb-3">
|
|
|
|
<label class="form-label" for="timezone">
|
|
|
|
<?= lang('timezone') ?>
|
|
|
|
</label>
|
2022-01-18 13:04:08 +03:00
|
|
|
<?php component('timezone_dropdown', [
|
|
|
|
'attributes' => 'id="timezone" class="form-control required"',
|
2022-03-29 11:16:07 +03:00
|
|
|
'grouped_timezones' => vars('grouped_timezones')
|
2022-01-18 12:35:34 +03:00
|
|
|
]) ?>
|
2021-12-18 21:16:22 +03:00
|
|
|
</div>
|
|
|
|
|
2022-07-27 02:29:00 +03:00
|
|
|
<div class="border rounded mb-3 p-3">
|
|
|
|
<label class="form-label mb-3">
|
|
|
|
<?= lang('options') ?>
|
2021-12-18 21:16:22 +03:00
|
|
|
</label>
|
2022-07-27 02:29:00 +03:00
|
|
|
|
|
|
|
<div class="form-check form-switch">
|
|
|
|
<input class="form-check-input" id="notifications" type="checkbox">
|
|
|
|
<label class="form-check-label" for="notifications">
|
|
|
|
<?= lang('receive_notifications') ?>
|
|
|
|
</label>
|
|
|
|
</div>
|
2021-12-18 21:16:22 +03:00
|
|
|
</div>
|
2022-07-27 02:29:00 +03:00
|
|
|
|
2021-12-18 21:16:22 +03:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</fieldset>
|
|
|
|
</form>
|
2021-11-22 09:36:05 +03:00
|
|
|
</div>
|
2021-12-18 21:16:22 +03:00
|
|
|
</div>
|
|
|
|
|
2021-11-22 09:36:05 +03:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<?php section('content') ?>
|
2021-12-14 10:05:22 +03:00
|
|
|
|
|
|
|
<?php section('scripts') ?>
|
|
|
|
|
2021-12-18 20:25:03 +03:00
|
|
|
<script src="<?= asset_url('assets/js/utils/url.js') ?>"></script>
|
2021-12-18 20:55:27 +03:00
|
|
|
<script src="<?= asset_url('assets/js/utils/validation.js') ?>"></script>
|
2021-12-18 20:25:03 +03:00
|
|
|
<script src="<?= asset_url('assets/js/http/account_http_client.js') ?>"></script>
|
|
|
|
<script src="<?= asset_url('assets/js/pages/account.js') ?>"></script>
|
2021-12-14 10:05:22 +03:00
|
|
|
|
|
|
|
<?php section('scripts') ?>
|