forked from Letstofreecode/spring-reactjs_devs
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathproduto.php
More file actions
52 lines (44 loc) · 1.87 KB
/
produto.php
File metadata and controls
52 lines (44 loc) · 1.87 KB
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
40
41
42
43
44
45
46
47
48
49
50
51
52
<?php
session_start();
?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<link rel="stylesheet" href="style.css">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-T3c6CoIi6uLrA9TneNEoa7RxnatzjcDSCmG1MXxSR1GAsXEV/Dwwykc2MPK8M2HN" crossorigin="anonymous">
<title>Document</title>
</head>
<body>
<header>
<div class="collapse" id="navbarToggleExternalContent" data-bs-theme="dark">
<div class="bg-dark p-4">
<h5 class="text-body-emphasis h4">Collapsed content</h5>
<span class="text-body-secondary">Toggleable via the navbar brand.</span>
</div>
</div>
<nav class="navbar navbar-dark bg-dark">
<div class="container-fluid">
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" onClick="bar()" data-bs-target="#navbarToggleExternalContent" aria-controls="navbarToggleExternalContent" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
</div>
</nav>
</header>
<main>
<section style="display:flex; justify-content: space-between; width: 100%;">
<nav style="margin-left: 40px; font-size: 20px;"> Produto</nav>
<a href="./cadastrarProduto.php"><img src="./bag-plus-fill.svg" style="margin-right:40px; width:40px; hwight:40px; cursor:pointer;"/></a>
</section>
</main>
<footer>
</footer>
</body>
<script>
function bar(){
var sidebar = document.querySelector(".sidebar")
sidebar.Style.marginLeft=0
}
</script>
</html>