-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfeat.php
More file actions
121 lines (108 loc) · 5.14 KB
/
feat.php
File metadata and controls
121 lines (108 loc) · 5.14 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
<?php
include('header.php');
?>
<div class="modal fade" id="exampleModalToggle" aria-hidden="true" aria-labelledby="exampleModalToggleLabel" tabindex="-1">
<div class="modal-dialog modal-dialog-centered">
<div class="modal-content">
<div class="modal-header">
<h1 class="modal-title fs-5" id="exampleModalToggleLabel">Message bot</h1>
<button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button>
</div>
<div class="modal-body">
<img src="../admin/upload/giphy (1).gif" alt="Error" height="400rem" width="460rem" >
</div>
<div class="modal-footer">
<button class="btn btn-primary" data-bs-target="#exampleModalToggle" data-bs-toggle="modal">Close</button>
</div>
</div>
</div>
</div>
</div>
<div>
</div>
</div>
<div class="modal fade" id="exampleModalToggle1" aria-hidden="true" aria-labelledby="exampleModalToggleLabel" tabindex="-1">
<div class="modal-dialog modal-dialog-centered">
<div class="modal-content">
<div class="modal-header">
<h1 class="modal-title fs-5" id="exampleModalToggleLabel">Upload</h1>
<button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button>
</div>
<form action="#" method="POST" enctype="multipart/form-data">
<div class="form-group">
<div class="form-group">
<input type="file" accept="image/*" name="file" id="file" value="" onchange="loadFile(event)" style="display: none;">
<label for="file" style="cursor: pointer;">Upload Image</label>
<img id="output" width="200" />
<script>
var loadFile = function(event) {
var image = document.getElementById('output');
image.src = URL.createObjectURL(event.target.files[0]);
};
</script>
</div>
</div>
<div class="modal-footer">
<button class="btn btn-primary" data-bs-target="#exampleModalToggle1" data-bs-toggle="modal">Close</button>
<button class="btn btn-primary" data-bs-target="#exampleModalToggle1" data-bs-toggle="modal">save</button>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="modal fade" id="exampleModalToggle2" aria-hidden="true" aria-labelledby="exampleModalToggleLabel" tabindex="-1">
<div class="modal-dialog modal-dialog-centered">
<div class="modal-content">
<div class="modal-header">
<h1 class="modal-title fs-5" id="exampleModalToggleLabel">Speak</h1>
<button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button>
</div>
<div class="modal-body">
<img src="giphy.gif" alt="Error" height="400rem" width="460rem" >
</div>
<div class="modal-footer">
<button class="btn btn-primary" data-bs-target="#exampleModalToggle2" data-bs-toggle="modal">Save</button>
</div>
</div>
</div>
</div>
</div>
</div>
<section class="page-section" id="feat">
<div class="container">
<div class="text-center">
<h2 class="section-heading text-uppercase">Features</h2>
<h3 class="section-subheading text-muted">Our unique Solution</h3>
</div>
<div class="row text-center">
<div class="col-md-4">
<span class="fa-stack fa-4x">
<i class="fas fa-circle fa-stack-2x text-primary"></i>
<a class="btn btn-primary" data-bs-toggle="modal" href="#exampleModalToggle" role="button"><i class="fas fa-message fa-stack-2x fa-inverse " ></i></a>
</span>
<h4 class="my-3">Messagebot</h4>
<p class="text-muted">Product get the information in your own Language at anytime.</p>
</div>
<div class="col-md-4">
<span class="fa-stack fa-4x">
<i class="fas fa-circle fa-stack-2x text-primary"></i>
<a class="btn btn-primary" data-bs-toggle="modal" href="#exampleModalToggle1" role="button"> <i class="fas fa-upload fa-stack-2x fa-inverse"></i></a>
</span>
<h4 class="my-3">Upload</h4>
<p class="text-muted">Upload your file and get details about your product in any Language..</p>
</div>
<div class="col-md-4">
<span class="fa-stack fa-4x">
<i class="fas fa-circle fa-stack-2x text-primary"></i>
<a class="btn btn-primary" data-bs-toggle="modal" href="#exampleModalToggle2" role="button"><i class="fas fa-comments fa-stack-2x fa-inverse"></i></a>
</span>
<h4 class="my-3">Speak</h4>
<p class="text-muted">Speak your product name and get information instantly with the help of AI.</p>
</div>
</div>
</div>
</section>
<?php
include('footer.php');
?>