vista catalogo creada
Browse files- app/catalogo.php +17 -0
app/catalogo.php
ADDED
|
@@ -0,0 +1,17 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
|
| 2 |
+
<form action="/my-handling-form-page" method="post"></form>
|
| 3 |
+
<div class="mb-3">
|
| 4 |
+
<label for="miArticulo" class="form-label">Articulo: </label>
|
| 5 |
+
<input type="text" class="form-control" id="miArticulo" aria-describedby="emailHelp">
|
| 6 |
+
<div id="emailHelp" class="form-text">We'll never share your email with anyone else.</div>
|
| 7 |
+
</div>
|
| 8 |
+
<div class="mb-3">
|
| 9 |
+
<label for="exampleInputPassword1" class="form-label">Password</label>
|
| 10 |
+
<input type="password" class="form-control" id="exampleInputPassword1">
|
| 11 |
+
</div>
|
| 12 |
+
<div class="mb-3 form-check">
|
| 13 |
+
<input type="checkbox" class="form-check-input" id="exampleCheck1">
|
| 14 |
+
<label class="form-check-label" for="exampleCheck1">Check me out</label>
|
| 15 |
+
</div>
|
| 16 |
+
<button type="submit" class="btn btn-primary">Submit</button>
|
| 17 |
+
</form>
|