diff options
author | Daniel Jin <[email protected]> | 2021-04-13 02:23:28 -0400 |
---|---|---|
committer | GitHub <[email protected]> | 2021-04-13 09:23:28 +0300 |
commit | a145e7295415fbf97d36170df9a7bc1f8d59255e (patch) | |
tree | 60d34451dde62d99907117e6b43fa8931627fec7 /web/login/index.pug | |
parent | 3af4a8b852019993ee31becd5651734377da6ec9 (diff) |
Add form tag to allow autocomplete of username and password. (#42)
Diffstat (limited to 'web/login/index.pug')
-rw-r--r-- | web/login/index.pug | 25 |
1 files changed, 13 insertions, 12 deletions
diff --git a/web/login/index.pug b/web/login/index.pug index 6b8cb290..3156f525 100644 --- a/web/login/index.pug +++ b/web/login/index.pug @@ -6,18 +6,19 @@ append vars - css_list = css_list.concat(["window", "modal", "login/login"]) block body - div(id="login-box") - div(id="login") - table - tr - td Username: - td #[input(type="text" id="user-input")] - tr - td Password: - td #[input(type="password" id="passwd-input")] - tr - td - td #[button(id="login-button" class="key") Login] + form(action="javascript:void(0)") + div(id="login-box") + div(id="login") + table + tr + td Username: + td #[input(type="text" id="user-input")] + tr + td Password: + td #[input(type="password" id="passwd-input")] + tr + td + td #[button(id="login-button" class="key") Login] ul(class="footer") li(class="footer-left") |