vw_small

Hardened fork of Vaultwarden (https://github.com/dani-garcia/vaultwarden) with fewer features.
git clone https://git.philomathiclife.com/repos/vw_small
Log | Files | Refs | README

commit 9bb4c38bf9874b2bdcc36001c910669108b82a0c
parent 08f0de7b46d36a4e974d8e7b25a9786168cd38a5
Author: taylorwmj <taylorwmjspam@gmail.com>
Date:   Tue, 22 Feb 2022 20:44:29 -0600

Added autofocus to pw field on admin login page
Diffstat:
Msrc/static/templates/admin/login.hbs | 5++---
1 file changed, 2 insertions(+), 3 deletions(-)

diff --git a/src/static/templates/admin/login.hbs b/src/static/templates/admin/login.hbs @@ -13,9 +13,9 @@ <small>Please provide it below:</small> <form class="form-inline" method="post"> - <input type="password" class="form-control w-50 mr-2" name="token" placeholder="Enter admin token"> + <input type="password" class="form-control w-50 mr-2" name="token" placeholder="Enter admin token" autofocus="autofocus"> <button type="submit" class="btn btn-primary">Enter</button> </form> </div> </div> -</main> -\ No newline at end of file +</main>