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

// @ts-expect-error Expected 0 arguments, but got 1
export default new Form({
  fields: {
    user: {
      label: 'user',
      placeholder: 'Username',
      value: '',
    },
    password: {
      label: 'Password',
      placeholder: 'Password',
      value: '',
      type: 'password',
    },
  },
});