Installation labels translated in browser lang

Administrator from Account page
Company from General Settings page
This commit is contained in:
Thomas Ingles 2024-04-30 03:43:35 +02:00
parent 0b5eacb109
commit 2bc5c5a360
No known key found for this signature in database
GPG key ID: 02A5671B95EAD354

View file

@ -24,7 +24,7 @@
<div class="content container"> <div class="content container">
<div class="welcome"> <div class="welcome">
<h3>Welcome to the Easy!Appointments installation page.</h3> <h3>Welcome to the Easy!Appointments installation page.</h3>
<p> <p><details>
This page will help you set the main settings of your Easy!Appointments installation. You will be able to This page will help you set the main settings of your Easy!Appointments installation. You will be able to
edit these settings and many more in the backend session of your system. Remember to use the edit these settings and many more in the backend session of your system. Remember to use the
<strong class="text-primary"><?= site_url('user/login') ?></strong> URL to connect to the backend section <strong class="text-primary"><?= site_url('user/login') ?></strong> URL to connect to the backend section
@ -36,68 +36,115 @@
submit new issues on submit new issues on
<a href="https://github.com/alextselegidis/easyappointments/issues">GitHub Issues</a> <a href="https://github.com/alextselegidis/easyappointments/issues">GitHub Issues</a>
in order to help our development process. in order to help our development process.
</p> </details></p>
</div> </div>
<div class="alert d-none"></div> <div class="alert d-none"></div>
<div class="row"> <div class="row">
<div class="admin-settings col-12 col-sm-5"> <div class="admin-settings col-12 col-sm-5">
<h3>Administrator</h3> <h3 class="text-black-50 mb-3 fw-light">Administrator</h3>
<div class="mb-3"> <div class="mb-3">
<label for="first-name" class="form-label">First Name</label> <label class="form-label" for="first-name">
<input type="text" id="first-name" class="form-control"/> <?= lang('first_name') ?>
<span class="text-danger">*</span>
</label>
<input id="first-name" class="form-control required" maxlength="256">
</div> </div>
<div class="mb-3"> <div class="mb-3">
<label for="last-name" class="form-label">Last Name</label> <label class="form-label" for="last-name">
<input type="text" id="last-name" class="form-control"/> <?= lang('last_name') ?>
<span class="text-danger">*</span>
</label>
<input id="last-name" class="form-control required" maxlength="512">
</div> </div>
<div class="mb-3"> <div class="mb-3">
<label for="email" class="form-label">Email</label> <label class="form-label" for="email">
<input type="text" id="email" class="form-control"/> <?= lang('email') ?>
<span class="text-danger">*</span>
</label>
<input id="email" class="form-control required" maxlength="512">
</div> </div>
<div class="mb-3"> <div class="mb-3">
<label for="phone-number" class="form-label">Phone Number</label> <label class="form-label" for="phone-number">
<input type="text" id="phone-number" class="form-control"/> <?= lang('phone_number') ?>
<span class="text-danger">*</span>
</label>
<input id="phone-number" class="form-control required" maxlength="128">
</div> </div>
<div class="mb-3"> <div class="mb-3">
<label for="username" class="form-label">Username</label> <label class="form-label" for="username">
<input type="text" id="username" class="form-control"/> <?= lang('username') ?>
<span class="text-danger">*</span>
</label>
<input id="username" class="form-control required" maxlength="256">
</div> </div>
<div class="mb-3"> <div class="mb-3">
<label for="password" class="form-label">Password</label> <label class="form-label" for="password">
<input type="password" id="password" class="form-control"/> <?= lang('password') ?>
<span class="text-danger">*</span>
</label>
<input type="password" id="password" class="form-control required" maxlength="512">
</div> </div>
<div class="mb-3"> <div class="mb-3">
<label for="retype-password" class="form-label">Retype Password</label> <label class="form-label" for="password-confirm">
<input type="password" id="retype-password" class="form-control"/> <?= lang('retype_password') ?>
<span class="text-danger">*</span>
</label>
<input type="password" id="password-confirm" class="form-control required" maxlength="512">
</div> </div>
</div> </div>
<div class="company-settings col-12 col-sm-5"> <div class="company-settings col-12 col-sm-5">
<h3>Company</h3> <h3 class="text-black-50 mb-3 fw-light"><?= lang('company') ?></h3>
<div class="mb-3"> <div class="mb-3">
<label for="company-name" class="form-label">Company Name</label> <label class="form-label" for="company-name">
<input type="text" id="company-name" class="form-control"/> <?= lang('company_name') ?>
<span class="text-danger">*</span>
</label>
<input id="company-name" data-field="company_name" class="required form-control">
<div class="form-text text-muted">
<small>
<?= lang('company_name_hint') ?>
</small>
</div>
</div> </div>
<div class="mb-3"> <div class="mb-3">
<label for="company-email" class="form-label">Company Email</label> <label class="form-label" for="company-email">
<input type="text" id="company-email" class="form-control"/> <?= lang('company_email') ?>
<span class="text-danger">*</span>
</label>
<input id="company-email" data-field="company_email" class="required form-control">
<div class="form-text text-muted">
<small>
<?= lang('company_email_hint') ?>
</small>
</div>
</div> </div>
<div class="mb-3"> <div class="mb-3">
<label for="company-link" class="form-label">Company Link</label> <label class="form-label" for="company-link">
<input type="text" id="company-link" class="form-control"/> <?= lang('company_link') ?>
<span class="text-danger">*</span>
</label>
<input id="company-link" data-field="company_link" class="required form-control">
<div class="form-text text-muted">
<small>
<?= lang('company_link_hint') ?>
</small>
</div>
</div> </div>
</div> </div>
</div> </div>