aboutsummaryrefslogtreecommitdiffstats
path: root/src/features/basicAuth/Form.js
diff options
context:
space:
mode:
authorLibravatar Stefan Malzner <stefan@adlk.io>2019-02-12 13:26:50 +0100
committerLibravatar Stefan Malzner <stefan@adlk.io>2019-02-12 13:26:50 +0100
commit3d2b58b387ce8b22cd7b674445d56d81019ef16c (patch)
tree7bf922ae2932ca9467246fca7288a49deb29ea9b /src/features/basicAuth/Form.js
parentAdd withTheme context to button (diff)
parentFix windows token login (diff)
downloadferdium-app-3d2b58b387ce8b22cd7b674445d56d81019ef16c.tar.gz
ferdium-app-3d2b58b387ce8b22cd7b674445d56d81019ef16c.tar.zst
ferdium-app-3d2b58b387ce8b22cd7b674445d56d81019ef16c.zip
Merge branch 'develop' into chore/lerna
Diffstat (limited to 'src/features/basicAuth/Form.js')
-rw-r--r--src/features/basicAuth/Form.js17
1 files changed, 17 insertions, 0 deletions
diff --git a/src/features/basicAuth/Form.js b/src/features/basicAuth/Form.js
new file mode 100644
index 000000000..95721d0e9
--- /dev/null
+++ b/src/features/basicAuth/Form.js
@@ -0,0 +1,17 @@
1import Form from '../../lib/Form';
2
3export default new Form({
4 fields: {
5 user: {
6 label: 'user',
7 placeholder: 'Username',
8 value: '',
9 },
10 password: {
11 label: 'Password',
12 placeholder: 'Password',
13 value: '',
14 type: 'password',
15 },
16 },
17});