Skip to content

Commit

Permalink
Resolved the conflicts
Browse files Browse the repository at this point in the history
  • Loading branch information
tarunkumar2005 committed Oct 3, 2024
1 parent 487be5e commit 488d723
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
12 changes: 6 additions & 6 deletions frontend/src/Pages/LoginPage.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -56,15 +56,15 @@ const Login = () => {

{/* Login Form */}
<form onSubmit={handleLogin} className="bg-white p-8 rounded-lg shadow-lg w-full max-w-md">
{/* Username Input */}
{/* Email Input */}
<div className="mb-6">
<label className="block text-gray-700 font-semibold mb-2" htmlFor="username">Username</label>
<label className="block text-gray-700 font-semibold mb-2" htmlFor="email">Email</label>
<input
type="text"
id="username"
value={username}
onChange={(e) => setUsername(e.target.value)}
placeholder="Enter your username"
id="email"
value={email}
onChange={(e) => setEmail(e.target.value)}
placeholder="Enter your email"
className="w-full px-4 py-3 border border-gray-300 rounded-lg focus:outline-none focus:ring-2 focus:ring-blue-500 transition duration-300"
required
/>
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/Pages/Register.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -137,4 +137,4 @@ const Register = () => {
);
};

export default Register;
export default Register;

0 comments on commit 488d723

Please sign in to comment.