-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmyshares.html
62 lines (58 loc) · 2.45 KB
/
myshares.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>My Shares</title>
<script src="assets/tailwindcss.js"></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css">
</head>
<body class="bg-white">
<!-- Header with Back Button -->
<div class="flex items-center p-4">
<a href="investing.html" class="text-gray-900">
<i class="fas fa-arrow-left text-xl"></i>
</a>
<h1 class="ml-4 text-xl font-semibold">My Shares</h1>
</div>
<div class="mt-6 space-y-4">
<hr>
<!-- Stock Item - Apple -->
<div class="flex items-center justify-between px-4">
<div class="flex items-center">
<img src="https://upload.wikimedia.org/wikipedia/commons/f/fa/Apple_logo_black.svg" alt="Apple" class="h-10 w-10 rounded-full">
<div class="ml-4">
<p class="font-medium">Apple Inc.</p>
<p class="text-sm text-gray-500">Available</p>
</div>
</div>
<div class="text-right">
<p class="font-medium">$145.09</p>
<p class="text-green-500 text-sm">+ $1.02 (0.71%)</p>
</div>
</div>
<hr>
<!-- Stock Item - Tesla -->
<div class="flex items-center justify-between px-4">
<div class="flex items-center">
<img src="https://upload.wikimedia.org/wikipedia/commons/b/bb/Tesla_T_symbol.svg" alt="Tesla" class="h-10 w-10 rounded-full">
<div class="ml-4">
<p class="font-medium">Tesla Inc.</p>
<p class="text-sm text-gray-500">Available</p>
</div>
</div>
<div class="text-right">
<p class="font-medium">$759.63</p>
<p class="text-green-500 text-sm">+ $5.73 (0.76%)</p>
</div>
</div>
<hr>
</div>
<!-- No Have -->
<!-- <div class="mt-10 flex flex-col items-center justify-center h-full">
<div class="animate-spin rounded-full h-12 w-12 border-t-4 border-blue-500"></div>
<p class="mt-8 text-gray-700 text-lg">You do not own stock</p>
<p class="text-gray-500 mt-2">Visit the stock market to buy stocks</p>
</div> -->
</body>
</html>