diff options
author | Joris | 2021-10-10 18:20:57 +0200 |
---|---|---|
committer | Joris | 2021-10-10 21:21:34 +0200 |
commit | 8ccd762bfc3d7da2716749d709cf5cc216882a23 (patch) | |
tree | 0629f749da8b06698e760b275070ba6a2e8bde0c /templates/login.html | |
parent | af1177e814d19e63ce39c42fc7c5888e4b3d9604 (diff) |
Search payments by categories explicitely
It was already possible to search by categories in the full text input,
but it could have matched other fields as well.
Explicitely add a select to search by categories.
Also put the search form in a left aside. The mobile view is not done
for the moment.
Diffstat (limited to 'templates/login.html')
-rw-r--r-- | templates/login.html | 14 |
1 files changed, 9 insertions, 5 deletions
diff --git a/templates/login.html b/templates/login.html index fd4cfe9..0c2e151 100644 --- a/templates/login.html +++ b/templates/login.html @@ -13,11 +13,15 @@ <div class="g-Form__Error">{{ error }}</div> {% endif %} - <label class="g-Form__Label" for="email">Email</label> - <input name="email" class="g-Form__Input" id="email" required autofocus /> - - <label class="g-Form__Label" for="password">Mot de passe</label> - <input name="password" type="password" class="g-Form__Input" id="password" required /> + <label class="g-Form__Label"> + Email + <input name="email" class="g-Form__Input" required autofocus /> + </label> + + <label class="g-Form__Label"> + Mot de passe + <input name="password" type="password" class="g-Form__Input" required /> + </label> <div> <input class="g-Login__Button g-Button__Validate" type="submit" value="Connexion" /> |