Merged Atharv Ombase's changes from frontend branch into the main branch.

This commit is contained in:
K
2025-03-29 22:28:10 +05:30
parent 65783c1ca0
commit 9e68d73cf4
8 changed files with 180 additions and 77 deletions
+3 -3
View File
@@ -1,5 +1,5 @@
// eslint-disable-next-line no-unused-vars
import React, { useState } from "react";
import { FcGoogle } from "react-icons/fc";
import { FiEye, FiEyeOff } from "react-icons/fi";
import { Link } from "react-router-dom";
@@ -40,7 +40,7 @@ const SignUp = () => {
<button
type="button"
onClick={() => setShowPassword(!showPassword)}
className="absolute right-3 top-3 text-gray-500 hover:text-gray-700"
className="absolute right-3 top-4 text-2xl text-gray-500 hover:text-gray-700"
>
{showPassword ? <FiEyeOff /> : <FiEye />}
</button>
@@ -56,7 +56,7 @@ const SignUp = () => {
<button
type="button"
onClick={() => setShowConfirmPassword(!showConfirmPassword)}
className="absolute right-3 top-3 text-gray-500 hover:text-gray-700"
className="absolute right-3 top-4 text-2xl text-gray-500 hover:text-gray-700"
>
{showConfirmPassword ? <FiEyeOff /> : <FiEye />}
</button>