aboutsummaryrefslogtreecommitdiffstats
path: root/src/features/basicAuth/Form.ts
blob: 95721d0e976ecb132a5b643089b4bc411beb0211 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
import Form from '../../lib/Form';

export default new Form({
  fields: {
    user: {
      label: 'user',
      placeholder: 'Username',
      value: '',
    },
    password: {
      label: 'Password',
      placeholder: 'Password',
      value: '',
      type: 'password',
    },
  },
});