-
Notifications
You must be signed in to change notification settings - Fork 0
/
modificarReceta.html
39 lines (36 loc) · 1.5 KB
/
modificarReceta.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
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
<!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="Modificar recetas">
<title>Modificar recetas</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/functions.js" type="module"></script>
<script src="./js/services/fetchData.js" type="module"></script>
<script src="./js/modificarReceta.js" type="module"></script>
</head>
<body class="bg-black">
<menu-bar></menu-bar>
<section class="containe-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">
<modal-for-recipes></modal-for-recipes>
<form
class="text-center"
id="form"
onsubmit="return false"
>
<form-recipe-main-info config-2="modify"></form-recipe-main-info>
<div id="table-main-container" class="d-flex flex-column gap-sm-2">
<table-recipe config="modify"></table-recipe>
</div>
</form>
</div>
</section>
<template id="templateSelect1"></template>
</body>
</html>