From 0ecc013a00f09abfcda5a1553e601eda0ef4aee0 Mon Sep 17 00:00:00 2001 From: Daniel Heath Date: Wed, 1 Jan 2014 13:52:09 +1100 Subject: [PATCH] Allow lastpass users to autofill their credentials --- views/static/front.jade | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/views/static/front.jade b/views/static/front.jade index 046b9351e6..f4cc9355c5 100644 --- a/views/static/front.jade +++ b/views/static/front.jade @@ -41,9 +41,9 @@ block content .tab-pane.active#login-tab form(ng-submit='auth()', method='POST') .control-group - input(type='text', ng-model='loginUsername', placeholder='Username') + input(type='text', ng-model='loginUsername', placeholder='Username', name="username") .control-group - input(type='password', ng-model='loginPassword', placeholder='Password') + input(type='password', ng-model='loginPassword', placeholder='Password', name="password") //-.control-group label.checkbox input(type='checkbox', ng-click='useUUID = !useUUID') @@ -51,7 +51,7 @@ block content .control-group input.btn.btn-primary(type='submit', value='Login') - small In case you are using a password manager (like 1Password) + small In case you are using a password manager (like 1Password) | and have problems logging in, try typing username and password manually. // good god accordions have html ceremony