Advertisement
shadiff

0104code

Apr 1st, 2023 (edited)
21
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.60 KB | None | 0 0
  1. <div class="input__field">
  2. <label>Delivery Pickup</label>
  3. <input type="text"
  4. class="form-control"
  5. onChange={handleChange}
  6. value={userData["Full Name"] || ""}
  7. id="search_input"
  8. placeholder="Pickup Location"
  9. required/>
  10. </div>
  11.  
  12. <div class="input__field">
  13. <label>Delivery Destination</label>
  14. <input type="text"
  15. placeholder="Pickup Destination"
  16. onChange={handleChange}
  17. value={userData["Full Name"] || ""}
  18. required/>
  19. </div>
  20.  
  21.  
  22.  
  23.  
  24.  
  25. /* Accounts
  26. .accounts-form{
  27. display: flex;
  28. flex-direction: column;
  29.  
  30. }
  31. .accounts-form-fields{
  32. width: 90%;
  33. flex: 1 1 0%;
  34. margin-left: 8px;
  35. margin-right: 8px;
  36. }
  37. .accounts-form-field{
  38. font-weight: bold;
  39. height: 20px;
  40. color: rgb(214, 214, 214);
  41. line-height: 28px;
  42. text-transform: uppercase;
  43. font-size:12px;
  44. }
  45. .accounts-form-field-input{
  46. background-color: #fff;
  47. display: flex;
  48. margin-top: 10px;
  49. margin-bottom: 10px;
  50. border-radius: 8px;
  51. }
  52. .accounts-form-input{
  53. padding: 8px;
  54. padding-left: 8px;
  55. padding-right: 8px;
  56. appearance: none;
  57. width: 100%;
  58. border-radius: 8px;
  59. } */
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement