This commit is contained in:
Pinga 2024-11-18 14:34:23 +02:00
parent b6c00187f2
commit 2d5efcd9ae
4 changed files with 4 additions and 4 deletions

View file

@ -385,7 +385,7 @@
<input type="text" class="form-control form-control-sm" name="user_name" placeholder="user1" autocomplete="off" required autocapitalize="none">
</td>
<td>
<input type="email" class="form-control form-control-sm" name="user_email" placeholder="user1@example.com" autocomplete="off" required autocapitalize="none">
<input type="text" class="form-control form-control-sm" name="user_email" placeholder="user1@example.com" autocomplete="off" required autocapitalize="none">
</td>
<td>
<input type="password" class="form-control form-control-sm" name="panelPassword" autocomplete="off" required>

View file

@ -143,7 +143,7 @@
<div class="mb-3">
<label for="contactEmail" class="form-label required">{{ __('Contact Email') }}</label>
<input type="email" class="form-control" id="contactEmail" name="contactEmail" placeholder="{{ __('Enter contact email') }}" value="{{ email }}" required>
<input type="text" class="form-control" id="contactEmail" name="contactEmail" placeholder="{{ __('Enter contact email') }}" value="{{ email }}" required>
<small class="form-hint">{{ __('The email address for general inquiries to the registry.') }}</small>
</div>

View file

@ -16,7 +16,7 @@
{{ csrf.field | raw }}
<div class="mb-3">
<label class="form-label">Email address</label>
<input name="email" type="email" class="form-control" placeholder="your@email.com" autocomplete="off">
<input name="email" type="text" class="form-control" placeholder="your@email.com" autocomplete="off">
</div>
<div class="mb-3">
<label class="form-label">

View file

@ -16,7 +16,7 @@
<p class="text-muted mb-4">Enter your email address and your password will be reset and emailed to you.</p>
<div class="mb-3">
<label class="form-label">Email address</label>
<input type="email" name="email" class="form-control{{ errors.email ? ' is-invalid' : '' }}" placeholder="Enter email">
<input type="text" name="email" class="form-control{{ errors.email ? ' is-invalid' : '' }}" placeholder="Enter email">
{% if errors.email %}
<small class="form-hint">{{ errors.email | first }}</small>
{% endif %}