mirror of
https://github.com/sudoxnym/habitica.git
synced 2026-07-31 23:11:15 +00:00
login form: set method='POST' & remove dymamic calculating of input
fields, since we now have the facebook button #1464 #1446 #1246
This commit is contained in:
parent
55dffcc317
commit
9690c7112f
1 changed files with 3 additions and 3 deletions
|
|
@ -39,11 +39,11 @@ block content
|
|||
|
||||
.tab-content
|
||||
.tab-pane.active#login-tab
|
||||
form(ng-submit='auth()')
|
||||
form(ng-submit='auth()', method='POST')
|
||||
.control-group
|
||||
input(type='text', ng-model='loginUsername', placeholder='{{useUUID ? "UUID" : "Username"}}')
|
||||
input(type='text', ng-model='loginUsername', placeholder='Username')
|
||||
.control-group
|
||||
input(type='{{useUUID ? "text" : "password"}}', ng-model='loginPassword', placeholder='{{useUUID ? "API Token" : "Password"}}')
|
||||
input(type='password', ng-model='loginPassword', placeholder='Password')
|
||||
//-.control-group
|
||||
label.checkbox
|
||||
input(type='checkbox', ng-click='useUUID = !useUUID')
|
||||
|
|
|
|||
Loading…
Reference in a new issue