-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdietas.php
51 lines (42 loc) · 1.55 KB
/
dietas.php
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
<?php
require 'vendor/autoload.php';
?>
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<title>NutriFit</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css">
<link rel="stylesheet" href="https://fonts.googleapis.com/icon?family=Material+Icons">
<link rel="stylesheet" href="css/style.css">
<script src="//maxcdn.bootstrapcdn.com/bootstrap/4.0.0/js/bootstrap.min.js"></script>
<script src="//cdnjs.cloudflare.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<script src="js/index.js"></script>
</head>
<header class="header">
<nav class="navbar navbar-default">
<div class="container-fluid">
<div class="navbar-header">
<a class="navbar-brand" href="#">NutriFit</a>
</div>
<ul >
<li><a href="home.html">Home <span class="sr-only">(current)</span></a></li>
<li><a href="usuarios.php">Usuarios</a></li>
<li class="active" ><a href="#">Dietas</a></li>
<li><a href="rutinas.php">Rutinas</a></li>
</ul>
</div>
</nav>
</header>
<body>
<div class="page-header">
<h1>Usuarios</h1>
</div>
<form action="upload_dieta.php" method="post" enctype="multipart/form-data">
Select image to upload:
<input type="file" name="fileToUpload" id="fileToUpload">
<input type="submit" value="Upload Image" name="submit">
</form>
</body>
</html>