-
Notifications
You must be signed in to change notification settings - Fork 0
/
orders.ejs
29 lines (22 loc) · 977 Bytes
/
orders.ejs
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<!-- viewport - the area of a web page that's visible to the user -->
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- adding external bootstrap5 CSS and External CSS3 links -->
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.2.3/dist/css/bootstrap.min.css" rel="stylesheet">
<!-- <link rel="stylesheet" href="./css/Domestic_Holdings.css"> -->
<title>Orders</title>
</head>
<body>
<h1>Executed Order Details</h1>
<p>Stock Name: <%= stockName %></p>
<p>Order Type: <%= orderType %></p>
<p>Quantity: <%= quantity %></p>
<!-- adding bootstrap JS -->
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.2.3/dist/js/bootstrap.bundle.min.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.0/jquery.min.js"></script>
</body>
</html>