Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file added ML_and_correlation_analysis.pdf
Binary file not shown.
279 changes: 279 additions & 0 deletions frontend/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions frontend/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
"preview": "vite preview"
},
"dependencies": {
"axios": "^1.8.4",
"chart.js": "^4.4.8",
"react": "^19.0.0",
"react-chartjs-2": "^5.3.0",
Expand Down
2 changes: 2 additions & 0 deletions frontend/src/Login.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,7 @@ const Login = () => {
type="email"
value={email}
onChange={e => setEmail(e.target.value)}
required
></input>
</div>
<div>
Expand All @@ -55,6 +56,7 @@ const Login = () => {
type="password"
value={password}
onChange={e => setPassword(e.target.value)}
required
></input>
</div>
<button type="submit">Login</button>
Expand Down
Loading