-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathidentify_insert.php
More file actions
66 lines (57 loc) · 1.69 KB
/
identify_insert.php
File metadata and controls
66 lines (57 loc) · 1.69 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Plant Identification</title>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css">
<link rel="stylesheet" href="styles.css">
<style>
body {
background-image: url('logo/bg.jpg');
background-size: cover;
background-repeat: no-repeat;
background-attachment: fixed;
color: #5C8374;
margin: 0;
padding: 0;
}
.container {
max-width: 800px;
margin: 0 auto;
padding: 40px;
text-align: center;
background-color: rgba(255, 255, 255, 0.9);
border-radius: 10px;
margin-top: 50px;
}
.card {
margin-top: 20px;
border-radius: 10px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.card-body {
padding: 20px;
}
h1 {
margin-bottom: 30px;
color: black;
}
input[type="file"],
input[type="submit"] {
color: black;
}
</style>
</head>
<body>
<?php include("navbar.php"); ?>
<?php include("bg.php"); ?>
<div class="container">
<h1>Plant Identification</h1>
<form action="identify.php" method="post" enctype="multipart/form-data">
<input type="file" name="image[]" multiple accept="image/*" />
<input type="submit" value="Identify Plants" />
</form>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/js/bootstrap.min.js"></script>
</div>
</body>
</html>