-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathbuyingstock.html
More file actions
41 lines (39 loc) · 1.67 KB
/
Copy pathbuyingstock.html
File metadata and controls
41 lines (39 loc) · 1.67 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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Stock Buying Details</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.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>
</head>
<body style="background-color:#e0e0e0;">
<div class="container">
<h2>Stock Buying details</h2>
<form action="buyernstock.php" method="post">
<div class="form-group">
<label for="id" >BuyerID:</label>
<input type="text" class="form-control" required="required" id="id" placeholder="Enter ID" name="id">
</div>
<div class="form-group">
<label for="sname" >Stock Name:</label>
<input type="text" class="form-control" required="required" id="sname" placeholder="Enter Stock Name" name="sname">
</div>
<div class="form-group">
<label for="price" >Price:</label>
<input type="text" class="form-control" required="required" id="price" placeholder="Enter Price" name="price">
</div>
<div class="form-group">
<label for="quantity" >Quantity:</label>
<input type="text" class="form-control" required="required" id="quantity" placeholder="Enter Quantity" name="quantity">
</div>
<div class="form-group">
<label for="date" >Date:</label>
<input type="date" class="form-control" required="required" id="date" placeholder="Enter Date" name="date">
</div>
<button type="submit" class="btn btn-default">Submit</button>
</form>
</div>
</body>
</html>