From 8845ff986c2f0ac1791598befe0f3b10808dbc63 Mon Sep 17 00:00:00 2001 From: Ankur Halder Date: Sun, 12 Nov 2023 17:39:34 +0530 Subject: [PATCH] password and username image added --- pages/index.jsx | 7 +++++++ public/login/password.png | Bin 0 -> 520 bytes public/login/username.png | Bin 0 -> 598 bytes 3 files changed, 7 insertions(+) create mode 100644 public/login/password.png create mode 100644 public/login/username.png diff --git a/pages/index.jsx b/pages/index.jsx index cd4ab9b5..67d6e270 100644 --- a/pages/index.jsx +++ b/pages/index.jsx @@ -2,6 +2,10 @@ import { Fragment, useState } from "react"; import { LandingLayout } from "@/layout"; import { LandingPage } from "@/containers"; +// Import your images or replace with actual image URLs +import usernameIcon from "./path/to/username-icon.png"; +import passwordIcon from "./path/to/password-icon.png"; + function Login() { const [username, setUsername] = useState(""); const [password, setPassword] = useState(""); @@ -10,6 +14,7 @@ function Login() { e.preventDefault(); console.log("Username:", username); console.log("Password:", password); + // Add your authentication logic here }; return ( @@ -19,6 +24,7 @@ function Login() {

Login