-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsuccessproductupload.html
More file actions
38 lines (34 loc) · 1.14 KB
/
Copy pathsuccessproductupload.html
File metadata and controls
38 lines (34 loc) · 1.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>successproductupload</title>
<link rel="stylesheet" href="Bootstrap/bootstrap.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.1.1/css/all.min.css">
<script src="Bootstrap/jquery-3.7.1.js"></script>
<script src="Bootstrap/popper.min.js"></script>
<script src="Bootstrap/bootstrap.min.js"></script>
<style>
body {
font-family: Arial, sans-serif;
margin: 20px;
background-color: #f9f9f9;
}
.content {
max-width: 600px;
margin: 50px auto;
padding: 20px;
background-color: #fff;
border-radius: 5px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
</style>
</head>
<body>
<div class="content">
<p>Product details uploaded successfully</p>
<a href="uploadproduct.php"><button class="btn btn-outline-warning">Go back</button></a>
</div>
</body>
</html>