-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsell_stock.html
76 lines (63 loc) · 2.31 KB
/
sell_stock.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Sell Stock</title>
</head>
<link rel="stylesheet" href="sell_stock_decor.css">
<body>
<!-- section that is used for the heading -->
<div class="sell-stock-heading-parent">
<a href="home_page.html">
<img src="arrow_back_ios_24dp_FILL0_wght400_GRAD0_opsz24 1.svg" alt="image not found" class="back-arrow">
</a>
<h2 class="sell-stock-heading">
SELL STOCK
</h2>
</div>
<!-- this the section that is gonna hold all the input feilds -->
<div class="sell-stock-entry-field-parent">
<!-- stock name section -->
<div class="stock-name">
<input type="text" class="stock-name-input" name="name" id="name" required>
<div class="stock-name-position">
<label for="name" class="stock-name-label">Stock Name</label>
</div>
</div>
<!-- stock buying price section -->
<div class="selling-price">
<input type="text" class="stock-name-input" name="name" id="name" required>
<div class="selling-price-position">
<label for="name" class="stock-name-label">Selling Price</label>
</div>
</div>
<!-- stock quantity section -->
<div class="quantity">
<input type="number" class="stock-name-input" name="name" id="name" required>
<div class="quantity-position">
<label for="name" class="stock-name-label">Quantity</label>
</div>
</div>
<!-- stock adding date section -->
<div class="date">
<input class="stock-name-input" name="name" id="name" required>
<div class="date-position">
<label for="name" class="stock-name-label">Date Of Selling</label>
</div>
</div>
</div>
<div class="sell-button">
<button class="sell-button-design">
SELL STOCK
</button>
</div>
<div class="my-stocks">
<a href="#">
<h3 class="my-stocks-design">
View My Stocks
</h3>
</a>
</div>
</body>
</html>