24 lines
1.0 KiB
Plaintext
24 lines
1.0 KiB
Plaintext
|
<dialog class="card" data-closeable id="check-is-a-holiday">
|
||
|
<div style="display: flex;">
|
||
|
<h2 style="margin-right: 1em;">Is it a holiday?</h2>
|
||
|
<button onclick="closeDialog('#check-is-a-holiday')" class="clean icon"><img class="icon" src="/assets/images/close-x.svg"></button>
|
||
|
</div>
|
||
|
<form method="get" action="/search">
|
||
|
<section>
|
||
|
<label for="country">Country:</label>
|
||
|
<select id="country" name="country">
|
||
|
<option value="HR">Croatia</option>
|
||
|
<option value="US">United states</option>
|
||
|
<option value="FR">France</option>
|
||
|
<option value="GB">Great Britain</option>
|
||
|
</select>
|
||
|
</section>
|
||
|
<section>
|
||
|
<label for="date">Date:</label>
|
||
|
<input id="date" name="date" type="date" required>
|
||
|
</section>
|
||
|
<section class="actions">
|
||
|
<button style="width: 100%;" type="submit">Check is a holiday</button>
|
||
|
</section>
|
||
|
</form>
|
||
|
</dialog>
|