pupupu

simple static CMS for crappy servers
git clone https://git.ce9e.org/pupupu.git

commit
8f1d98cd01db9e25f066c6bc58f36d15692704a0
parent
7653657ea22760689900ffe789915569bdaae578
Author
Tobias Bengfort <tobias.bengfort@posteo.de>
Date
2018-10-21 15:59
users view: add placeholders

Diffstat

M templates/users.html 4 ++--

1 files changed, 2 insertions, 2 deletions


diff --git a/templates/users.html b/templates/users.html

@@ -2,8 +2,8 @@
    2     2 
    3     3 {% block main %}
    4     4     <form method="post" class="form--line">
    5    -1         <input type="text" name="name">
    6    -1         <input type="password" name="password">
   -1     5         <input type="text" name="name" placeholder="{{ 'username'|trans }}">
   -1     6         <input type="password" name="password" placeholder="{{ 'password'|trans }}">
    7     7         <button>{{ 'Add user'|trans }}</button>
    8     8     </form>
    9     9