mirror of
https://github.com/YunoHost/pepettes.git
synced 2024-09-03 20:06:20 +02:00
show a selection icon for select forms (better UI)
This commit is contained in:
parent
62ba1edb0f
commit
ac970eb50e
1 changed files with 2 additions and 2 deletions
|
@ -28,13 +28,13 @@
|
||||||
|
|
||||||
<input type="number" min="0" max="9999" class="form-control" id="quantity" value="10" aria-label="Amount">
|
<input type="number" min="0" max="9999" class="form-control" id="quantity" value="10" aria-label="Amount">
|
||||||
|
|
||||||
<select class="form-control" id="currency" style="width:40px" aria-label="{{ _('Currency') }}">
|
<select class="form-select" id="currency" style="width:40px" aria-label="{{ _('Currency') }}">
|
||||||
{% for iso, symbol in currencies %}
|
{% for iso, symbol in currencies %}
|
||||||
<option value="{{ iso }}">{{ symbol }} </option>
|
<option value="{{ iso }}">{{ symbol }} </option>
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
</select>
|
</select>
|
||||||
|
|
||||||
<select class="form-control" id="frequency" aria-label="{{ _('Frequency') }}">
|
<select class="form-select" id="frequency" aria-label="{{ _('Frequency') }}">
|
||||||
<option value="recuring"> {{ _('/ month') }} </option>
|
<option value="recuring"> {{ _('/ month') }} </option>
|
||||||
<option value="one_time"> {{ _('one time') }} </option>
|
<option value="one_time"> {{ _('one time') }} </option>
|
||||||
</select>
|
</select>
|
||||||
|
|
Loading…
Reference in a new issue