Skip to content

Commit

Permalink
Merge pull request #56 from jeff-winn/54-passwords-should-not-be-visible
Browse files Browse the repository at this point in the history
Changing form type to hide the password.
  • Loading branch information
jeff-winn authored May 30, 2022
2 parents 3a72f2d + ba76e90 commit 2331ca7
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions config.schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,13 +9,19 @@
"title": "Email Address",
"type": "string",
"minLength": 1,
"required": true
"required": true,
"x-schema-form": {
"type": "email"
}
},
"password": {
"title": "Password",
"type": "string",
"minLength": 1,
"required": true
"required": true,
"x-schema-form": {
"type": "password"
}
},
"appKey": {
"title": "Application Key",
Expand Down

0 comments on commit 2331ca7

Please sign in to comment.