Skip to content
Snippets Groups Projects
Commit 6777b45e authored by Alexa Valentová's avatar Alexa Valentová
Browse files

Move selector

parent 53b2e330
Branches
No related tags found
2 merge requests!1299Move selector,!1298Move selector
Pipeline #20929 passed
...@@ -55,20 +55,6 @@ ...@@ -55,20 +55,6 @@
required required
></textarea> ></textarea>
<div class="w-full pt-5">
<select
class="bg-grey-150 font-alt p-3 text-3xl flex-1 w-full"
placeholder="Kraj"
name="kraj"
id="id_kraj"
required
>
{% for option in form.kraj.field.choices %}
<option value="{{ option.0 }}">{{ option.1 }}</option>
{% endfor %}
</select>
</div>
<div class="flex xl:gap-6 gap-4 justify-center mt-4 xl:flex-row flex-col"> <div class="flex xl:gap-6 gap-4 justify-center mt-4 xl:flex-row flex-col">
<input <input
type="text" type="text"
...@@ -89,6 +75,20 @@ ...@@ -89,6 +75,20 @@
> >
</div> </div>
<div class="w-full mt-4">
<select
class="bg-grey-150 font-alt p-3 text-3xl flex-1 w-full"
placeholder="Kraj"
name="kraj"
id="id_kraj"
required
>
{% for option in form.kraj.field.choices %}
<option value="{{ option.0 }}">{{ option.1 }}</option>
{% endfor %}
</select>
</div>
<div class="mt-4"> <div class="mt-4">
<input type="checkbox" name="accepts_gdpr" id="accepts_gdpr" required=""> <input type="checkbox" name="accepts_gdpr" id="accepts_gdpr" required="">
<label for="accepts_gdpr" class="text-lg"> <label for="accepts_gdpr" class="text-lg">
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment