Compare commits
2 Commits
15ad26c505
...
3dbecd171f
| Author | SHA1 | Date | |
|---|---|---|---|
| 3dbecd171f | |||
| bdba683f00 |
@ -2,11 +2,11 @@
|
|||||||
<div class="verify-card">
|
<div class="verify-card">
|
||||||
|
|
||||||
@if(!isOtpSent()){
|
@if(!isOtpSent()){
|
||||||
<h2 class="title">🔐 Login</h2>
|
<h2 class="title">🔐 Login</h2>
|
||||||
}
|
}
|
||||||
|
|
||||||
@if(isOtpSent() && !isVerified()){
|
@if(isOtpSent() && !isVerified()){
|
||||||
<h2 class="title">🔐 OTP Verification</h2>
|
<h2 class="title">🔐 OTP Verification</h2>
|
||||||
}
|
}
|
||||||
|
|
||||||
<!-- Step 1: Enter Email -->
|
<!-- Step 1: Enter Email -->
|
||||||
@ -21,19 +21,9 @@
|
|||||||
<!-- Step 2: OTP Input -->
|
<!-- Step 2: OTP Input -->
|
||||||
@if (isOtpSent() && !isVerified()) {
|
@if (isOtpSent() && !isVerified()) {
|
||||||
<div class="otp-section">
|
<div class="otp-section">
|
||||||
<p class="info-text">
|
|
||||||
OTP sent to <b>{{ emailForm.value.email }}</b>
|
|
||||||
</p>
|
|
||||||
|
|
||||||
<form [formGroup]="otpForm" (ngSubmit)="verifyOtp()">
|
<form [formGroup]="otpForm" (ngSubmit)="verifyOtp()">
|
||||||
<label for="otp">Enter 6-digit OTP</label>
|
<label for="otp">Enter 6-digit OTP</label>
|
||||||
<input id="otp" type="text" maxlength="6" formControlName="otp" placeholder="123456" />
|
<input id="otp" type="text" maxlength="6" formControlName="otp" placeholder="123456" />
|
||||||
@if (isError()) {
|
|
||||||
<div class="error-banner">
|
|
||||||
<i class="fa-solid fa-circle-exclamation"></i>
|
|
||||||
<span>{{ message() }}</span>
|
|
||||||
</div>
|
|
||||||
}
|
|
||||||
<button type="submit" [disabled]="otpForm.invalid">
|
<button type="submit" [disabled]="otpForm.invalid">
|
||||||
Verify OTP
|
Verify OTP
|
||||||
</button>
|
</button>
|
||||||
@ -47,5 +37,19 @@
|
|||||||
</button>
|
</button>
|
||||||
</div>
|
</div>
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@if (isError()) {
|
||||||
|
<div class="error-banner">
|
||||||
|
<i class="fa-solid fa-circle-exclamation"></i>
|
||||||
|
<span>{{ message() }}</span>
|
||||||
|
</div>
|
||||||
|
}
|
||||||
|
|
||||||
|
@if (!isError() && isOtpSent() && !isVerified()) {
|
||||||
|
<div class="success-banner">
|
||||||
|
<i class="fa-solid fa-circle-check"></i>
|
||||||
|
<span>{{ message() }}</span>
|
||||||
|
</div>
|
||||||
|
}
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
@ -170,4 +170,24 @@ button {
|
|||||||
color: #ccc;
|
color: #ccc;
|
||||||
font-size: 14px;
|
font-size: 14px;
|
||||||
margin-bottom: 10px;
|
margin-bottom: 10px;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Success banner for OTP sent */
|
||||||
|
.success-banner {
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
gap: 8px;
|
||||||
|
background: rgba(120, 255, 140, 0.07);
|
||||||
|
border: 1px solid rgba(120, 255, 140, 0.25);
|
||||||
|
border-radius: 8px;
|
||||||
|
padding: 10px 14px;
|
||||||
|
margin: 10px 0 10px;
|
||||||
|
color: #78ff8c;
|
||||||
|
font-size: 13px;
|
||||||
|
|
||||||
|
i {
|
||||||
|
font-size: 15px;
|
||||||
|
flex-shrink: 0;
|
||||||
|
color: #78ff8c;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
@ -48,15 +48,27 @@ export class OtpComponent implements OnInit {
|
|||||||
if (this.emailForm.invalid) return;
|
if (this.emailForm.invalid) return;
|
||||||
const email = this.emailForm.value.email;
|
const email = this.emailForm.value.email;
|
||||||
|
|
||||||
this.authService.sendOtp(email).subscribe(() => {
|
this.authService.sendOtp(email).subscribe({
|
||||||
this.isOtpSent.set(true);
|
next: () => {
|
||||||
this.message.set('OTP sent successfully!');
|
this.isOtpSent.set(true);
|
||||||
this.startTimer(30); // 30 seconds countdown
|
this.isError.set(false);
|
||||||
|
this.message.set(`OTP sent to ${email}.`);
|
||||||
|
this.startTimer(30); // 30 seconds countdown
|
||||||
|
},
|
||||||
|
error: (err) => {
|
||||||
|
this.isError.set(true);
|
||||||
|
if (err.status === 404) {
|
||||||
|
this.message.set('Email not found. Please check and try again.');
|
||||||
|
} else {
|
||||||
|
this.message.set('Failed to send OTP. Please try again.');
|
||||||
|
}
|
||||||
|
}
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
resendOtp() {
|
resendOtp() {
|
||||||
if (this.countdown() > 0) return;
|
if (this.countdown() > 0) return;
|
||||||
|
this.otpForm.reset();
|
||||||
this.sendOtp();
|
this.sendOtp();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user