fix: design of verify email

This commit is contained in:
RaktimaNXG
2024-05-06 13:55:15 +05:30
parent c85c21ef8a
commit 7b4fa4fe23
2 changed files with 7 additions and 7 deletions
@@ -25,7 +25,7 @@ function VerifyEmail(props) {
type="tel"
pattern="[0-9]{4}"
className="px-3 py-2 w-full border-[1px] border-gray-300 rounded focus:outline-none text-xs"
placeholder="Enter OTP sent on mail"
placeholder="Enter OTP received over email"
value={props.otp}
onChange={(e) => props.setOtp(e.target.value)}
/>
@@ -61,10 +61,10 @@ function VerifyEmail(props) {
></div>
</div>
) : (
<div className="p-[15px]">
<p>Please verify your email !</p>
<div className="h-[1px] bg-[#9f9f9f] w-full"></div>
<div className="m-[15px] ">
<div className="px-6 py-3">
<p className="mb-2">Please verify your email !</p>
<hr />
<div className="px-0 mt-3">
<button
className={submitBtn}
type="submit"
@@ -72,7 +72,7 @@ function VerifyEmail(props) {
props.handleVerifyBtn();
}}
>
Verify
Send OTP
</button>
</div>
</div>
+1 -1
View File
@@ -507,7 +507,7 @@ function UserProfile() {
type="tel"
pattern="[0-9]{4}"
className="px-3 py-2 w-full border-[1px] border-gray-300 rounded focus:outline-none text-xs"
placeholder="Enter OTP sent on mail"
placeholder="Enter OTP received over email"
value={otp}
onChange={(e) => setOtp(e.target.value)}
/>