Skip to content

Commit e8558c3

Browse files
committed
Update README.md and styles.css according to the issue and reviewer's comment
1 parent 5f01d4e commit e8558c3

File tree

2 files changed

+17
-3
lines changed

2 files changed

+17
-3
lines changed

README.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,17 @@ I utilize third-party APIs for fetching live stock prices and other indicators f
4040
- Utilizes React for state management, including user input validation before sending data to the server
4141
- Implements cookie-based authentication to reduce the need for repeated sign-ins
4242

43+
#### BuyPage Component
44+
The BuyPage component allows users to search for stock quotes, view their current portfolio, and purchase stocks.
45+
It provides real-time stock data, calculates total costs, and ensures users have sufficient funds before completing transactions.
46+
47+
#### PageTransaction Component
48+
The PageTransaction component displays a user's transaction history, including details such as transaction type, stock symbol, shares,
49+
unit price, and total values. It also shows the user's current balance with an option to toggle its visibility.
50+
#### Login Component
51+
The Login component provides a simple user authentication interface, allowing users to enter their username and password to log in.
52+
It displays success or error messages based on the login attempt and redirects the user to the main page upon successful authentication.
53+
4354
# <span style="color:red">START APPLICATION</span>
4455

4556
### For Client

tradingwebapp.client/src/assets/styles.css

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,13 @@
11
/* Size for brand */
2+
/* Ensures the brand name appears prominently */
23
nav .navbar-brand {
3-
font-size: xxx-large;
4+
font-size: xxx-large;
45
}
56

7+
/* Makes navigation links visually distinct */
68
.navbar-nav .nav-item .nav-link {
7-
font-weight: bold;
8-
font-size: x-large;
9+
font-weight: bold;
10+
font-size: x-large;
911
}
1012

1113
/* Colors for brand */
@@ -24,6 +26,7 @@ nav .navbar-brand .yellow {
2426
nav .navbar-brand .green {
2527
color: #2e944b;
2628
}
29+
/* Main content styling */
2730
.Main {
2831
margin-top: 15px;
2932
margin-left: 20px;

0 commit comments

Comments
 (0)