Advertisement
Guest User

Untitled

a guest
Feb 21st, 2020
139
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 3.82 KB | None | 0 0
  1.             <>
  2.                 <div className="form-check form-check-inline">
  3.                     <MakeInput
  4.                         inputType="radio"
  5.                         inputClass="test-radio form-check-input"
  6.                         inputName="test-radio"
  7.                         inputContent= {{
  8.                             nameGroup: "test-radio-group",
  9.                             value: "uwu i'm a radio",
  10.                             checked: "true",
  11.                             required: "true",
  12.                         }}
  13.                         cssInput={{ "border": "1px solid teal", }}
  14.                          />
  15.                 </div>
  16.                 <div className="form-check form-check-inline">
  17.                     <MakeInput
  18.                             inputType="radio"
  19.                             inputClass="test-radio form-check-input"
  20.                             inputName="test-radio"
  21.                                 inputContent= {{
  22.                                     nameGroup: "test-radio-group",
  23.                                     value: "uwu i'm a radio",
  24.                                     checked: "true",
  25.                                     required: "true",
  26.                                 }}
  27.                             cssInput={{ "border": "1px solid teal", }}
  28.                             />
  29.                 </div>
  30.                 <div class="form-check">
  31.                     <MakeInput
  32.                             inputType="checkbox"
  33.                             inputId="accept-terms-cb"
  34.                             humanName="Accept terms checkbox"
  35.                             inputClass="test-checkbox mkip-valid-class form-check-input"
  36.                             inputName="test-checkbox"
  37.                             inputContent= {{
  38.                                 value: "Check Me Out",
  39.                                 checked: "false",
  40.                                 required: "true",
  41.                                 validate: "You must read and accept the terms of service to proceed."
  42.                             }}
  43.                             cssInput={false}
  44.                         />
  45.                 </div>
  46.                 <div class="form-group">
  47.                     <MakeInput
  48.                             inputType="text"
  49.                             inputId="enter-name"
  50.                             humanName="First Name"
  51.                             inputClass="test-name mkip-valid-class form-control"
  52.                             inputName="enter-name"
  53.                             inputContent={{
  54.                                 labelValue: "First Name",
  55.                                 minLength: "0",
  56.                                 maxLength: "20",
  57.                                 size: "20",
  58.                                 autocomplete: "on",
  59.                                 inputMode: "string",
  60.                                 required: "true",
  61.                             }}
  62.                             cssInput={false}
  63.                     />
  64.                 </div>
  65.                 <div class="form-group">
  66.                     <MakeInput
  67.                             inputType="email"
  68.                             inputId="enter-email-cb"
  69.                             humanName="E-mail entry"
  70.                             inputClass="test-email mkip-valid-class form-control"
  71.                             inputName="test-email"
  72.                             inputContent= {{
  73.                                 labelValue: "Enter your email: ",
  74.                                 required: "true",
  75.                                 pattern: "[^@]+@[^\.]+\..+",
  76.                                 validate: "You must enter a valid e-mail"
  77.                                 }}
  78.                             cssInput={false}
  79.                             />
  80.                 </div>
  81.     </>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement