-
Notifications
You must be signed in to change notification settings - Fork 0
/
agregarIngredientes.html
24 lines (24 loc) · 1015 Bytes
/
agregarIngredientes.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="Agregar ingredientes">
<title>Agregar ingrediente</title>
<link href="./styles.css" rel="stylesheet">
<link rel="stylesheet" href="./node_modules//bootstrap/dist/css/bootstrap.min.css" />
<script src="./node_modules/bootstrap/dist/js/bootstrap.bundle.js"></script>
<script src="./js/index.js" type="module"></script>
<script src="./js/agregarIngrediente.js" type="module"></script>
</head>
<body class="bg-black">
<menu-bar></menu-bar>
<section class="section container-fluid vh-auto d-flex justify-content-center align-items-center p-5 overflow-x-hidden" >
<div class="container border border-black rounded p-5 bg-light">
<form-add-ingredient></form-add-ingredient>
<table-ingredients config="none/add"></table-ingredients>
</div>
</section>
</body>
</html>