Skip to content
Open
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
4 changes: 2 additions & 2 deletions frontend/src/components/Admin.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ function Admin() {
<div className="lg:text-sm lg:pt-0 md:text-sm md:pt-0 text-xs text-center text-[#22C3FF] pt-0 pb-5 font-poppins font-semibold">Login to your account</div>

<input className="lg:pb-3 mb-2 mt-8 lg:w-2/4 md:w-3/4 w-5/6 rounded-xl bg-[#23354E] appearance-none border-2 border-[#20354E] focus:text-gray-900 leading-tight focus:outline-none focus:bg-white focus:border-[#22C3FF]-500 text-white" id="inline-name" type="text" placeholder="Username" name="email" value={credentials.email || ""} onChange={handleChange}></input>
<input className="lg:pb-3 mb-2 mt-2 lg:w-2/4 md:w-3/4 w-5/6 rounded-xl bg-[#23354E] appearance-none border-2 border-[#20354E] focus:text-gray-900 leading-tight focus:outline-none focus:bg-white focus:border-[#22C3FF]-500 text-white" id="inline-name" type="text" placeholder="Password" name="password" value={credentials.password ||""} onChange={handleChange}></input>
<input className="lg:pb-3 mb-2 mt-2 lg:w-2/4 md:w-3/4 w-5/6 rounded-xl bg-[#23354E] appearance-none border-2 border-[#20354E] focus:text-gray-900 leading-tight focus:outline-none focus:bg-white focus:border-[#22C3FF]-500 text-white" id="inline-name" type="password" placeholder="Password" name="password" value={credentials.password ||""} onChange={handleChange}></input>

<button className="mt-8 lg:text-xl md:text-xl text-sm shadow bg-[#22C3FF] text-black font-bold py-1 px-2 rounded-lg hover:bg-[#D4DFC7] hover:text-[#071E22] focus:shadow-outline focus:outline-none" type="submit">
Login
Expand All @@ -76,4 +76,4 @@ function Admin() {
);
}

export default Admin;
export default Admin;