Advertisement
Guest User

Untitled

a guest
Aug 18th, 2019
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.31 KB | None | 0 0
  1. <div className="row justify-content-center mt-5">
  2. <div className="col-md-8">
  3. <div className="card">
  4. <div className="card-body">
  5. <h2 className="text-center">Editar Producto</h2>
  6. <form>
  7. <div className="form-group">
  8. <label>Titulo</label>
  9. <input
  10. type="text"
  11. className="form-control"
  12. placeholder="Titulo"
  13. />
  14. </div>
  15. <div className="form-group">
  16. <label>Precio del Producto</label>
  17. <input
  18. type="text"
  19. className="form-control"
  20. placeholder="Precio"
  21. />
  22. </div>
  23.  
  24. <button type="submit" className="btn btn-primary font-weight-bold text-uppercase d-block w-100">Guardar Cambios</button>
  25. </form>
  26.  
  27. </div>
  28. </div>
  29. </div>
  30. </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement