0.0.49 upd styles.css

This commit is contained in:
2023-07-28 15:18:15 +03:00
parent fddb091e7a
commit 696349befe
3 changed files with 53 additions and 16 deletions

View File

@@ -27,15 +27,17 @@
<hr>
<div class="departure_arrival">
<div>
<div class="input_wrapper">
<label for="id_departure_DT">{{ form.fields.departure_DT.label }}</label>
<input
<input
type="datetime-local"
name="departure_DT"
{% if form.fields.departure_DT.required %} required{% endif %}
id="id_departure_DT"
{% if form.data.departure_DT %}value="{{ form.data.departure_DT }}"{% endif %}
/>
{% if form.errors and form.errors.departure_DT %}
<span>{{ form.errors.departure_DT }}</span>
{% endif %}
@@ -202,12 +204,13 @@
<hr>
<div>
<div class="phone">
<div>
<label for="id_phone">{{ form.fields.phone.label }}</label>
<input
type="text"
name="phone"
placeholder="{{ form.fields.phone.label }}"
{% if form.fields.phone.required %} required{% endif %}
id="id_phone"
{% if form.cleaned_data.phone %}value="{{ form.cleaned_data.phone}}"{% endif %}
@@ -225,6 +228,7 @@
type="text"
name="extra_phone"
id="id_extra_phone"
placeholder="{{ form.fields.extra_phone.label }}"
{% if form.cleaned_data.extra_phone %}value="{{ form.cleaned_data.extra_phone}}"{% endif %}
/>
{% if form.errors and form.errors.extra_phone %}