1
0
mirror of https://github.com/2ec0b4/kaamelott-soundboard.git synced 2025-12-09 08:03:24 +00:00

Ajoute un libellé au champ filtre du formulaire

This commit is contained in:
Antoine
2016-05-22 18:56:14 +02:00
parent 1b7327c34d
commit 9ebdd36b49
2 changed files with 5 additions and 1 deletions

View File

@@ -392,6 +392,9 @@ footer .likely {
:-ms-input-placeholder { :-ms-input-placeholder {
color: #AEAEAE; color: #AEAEAE;
} }
label {
display: none;
}
input { input {
margin: 0; margin: 0;
} }

View File

@@ -1,4 +1,5 @@
<form action="index.html" method="post"> <form action="index.html" method="post">
<input type="text" name="s" value="" placeholder="Ex. : Perceval"> <label for="filter">Filtrer les sons</label>
<input type="text" name="s" value="" id="filter" placeholder="Ex. : Perceval">
<input type="submit" name="submit" value="Filtrer" class="btn"> <input type="submit" name="submit" value="Filtrer" class="btn">
</form> </form>