Skip to content

Commit f7aa2c0

Browse files
author
Uttam Singh
committed
Add logo image and update Login page
1 parent 23f8374 commit f7aa2c0

File tree

2 files changed

+16
-6
lines changed

2 files changed

+16
-6
lines changed

frontend/src/assets/logo.png.png

9.88 KB
Loading

frontend/src/pages/Login.jsx

Lines changed: 16 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,23 @@
11
import React from "react";
2+
import logo from "frondend/src/assets/logo.png"; //
23

34
export default function Login() {
45
return (
5-
<div style={{
6-
textAlign: "center",
7-
marginTop: "100px",
8-
fontFamily: "Arial, sans-serif",
9-
color: "#0047AB"
10-
}}>
6+
<div
7+
style={{
8+
textAlign: "center",
9+
marginTop: "80px",
10+
fontFamily: "Arial, sans-serif",
11+
color: "#0047AB",
12+
}}
13+
>
14+
{/* ✅ Logo */}
15+
<img
16+
src={logo}
17+
alt="Edme Insurance Logo"
18+
style={{ width: "120px", height: "auto", marginBottom: "20px" }}
19+
/>
20+
1121
<h1>Welcome to FAT-EIBL</h1>
1222
<p>Finance Audit Tracker – Edme Insurance Brokers Limited</p>
1323
</div>

0 commit comments

Comments
 (0)