-
Notifications
You must be signed in to change notification settings - Fork 1
/
add_to_cart.php
49 lines (32 loc) · 1.54 KB
/
add_to_cart.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
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
<link href="https://fonts.googleapis.com/css?family=Montserrat" rel="stylesheet">
<style type="text/css">
</style>
</head>
<body>
<div class="modal fade" id="all" role="dialog">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal">×</button>
<h4 class="modal-title">Add to Cart?</h4>
</div>
<div class="modal-body">
<h4>Enter Product's unique ID which is written just above every product.<br>Are you sure you want to add this product to cart?</h4>
<p>Note: Added products can't be furthur removed from the cart. We are working on it.</p>
<form method="post" action="cart_added.php">
<input type="text" class="form-control" placeholder="Product Unique ID" name="prodno"/><br><center>
<button class="btn btn-primary" type="submit" value="button" name="button">Add to Cart</button></center>
</form>
</div>
</div>
</div>
</div>
</body>
</html>