This commit is contained in:
KONE SOREL 2026-03-10 17:32:37 +00:00
parent 1627e35861
commit b4ecc58611

View File

@ -37,18 +37,18 @@
<div class="row g-3 mb-4">
<div class="col-md-3">
<label class="form-label small fw-bold text-muted"><?= _("Téléphone") ?></label>
<label class="form-label small fw-bold text-muted required"><?= _("Téléphone") ?></label>
<div class="input-group shadow-xs">
<span class="input-group-text bg-white border-2 border-end-0"><i class="fas fa-phone text-muted"></i></span>
<input type="tel" class="form-control border-2 border-start-0" id="telephone" name="telephone">
<input type="tel" class="form-control border-2 border-start-0" id="telephone" name="telephone" required>
</div>
</div>
<div class="col-md-3">
<label class="form-label small fw-bold text-muted"><?= _("E-mail") ?></label>
<label class="form-label small fw-bold text-muted required"><?= _("E-mail") ?></label>
<div class="input-group shadow-xs">
<span class="input-group-text bg-white border-2 border-end-0"><i class="fas fa-envelope text-muted"></i></span>
<input type="email" class="form-control border-2 border-start-0" id="email" name="email">
<input type="email" class="form-control border-2 border-start-0" id="email" name="email" required>
</div>
</div>