Advertisement
Guest User

Register Inputs example for react-modal-login

a guest
Feb 22nd, 2019
207
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. registerInputs: [
  2.               {
  3.                 label: 'User Name',
  4.                 type: 'text',
  5.                 id: 'login',
  6.                 name: 'login',
  7.                 placeholder: 'User Name',
  8.                 inputClass: 'login-modal__input',
  9.               },
  10.               {
  11.                 label: 'Email',
  12.                 type: 'email',
  13.                 id: 'email',
  14.                 name: 'email',
  15.                 placeholder: 'Email',
  16.                 inputClass: 'login-modal__input',
  17.               },
  18.               {
  19.                 label: 'Password',
  20.                 type: 'password',
  21.                 id: 'password',
  22.                 name: 'password',
  23.                 placeholder: 'Password',
  24.                 inputClass: 'login-modal__input',
  25.               },
  26.               {
  27.                 label: 'City',
  28.                 type: 'text',
  29.                 id: 'city',
  30.                 name: 'city',
  31.                 placeholder: 'Miasto',
  32.                 inputClass: 'login-modal__input',
  33.               }
  34.             ]
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement