Skip to content

Commit ab83e86

Browse files
committed
add sign in component
1 parent c99575a commit ab83e86

File tree

3 files changed

+36
-11
lines changed

3 files changed

+36
-11
lines changed

public/assets/icons/google-logo.svg

+1
Loading
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,32 @@
1-
<form class="my-10 space-y-6" [formGroup]="form" (ngSubmit)="onSubmit()" >
1+
<!-- login form -->
2+
<form class="my-10 space-y-6" [formGroup]="form" (ngSubmit)="onSubmit()">
23
<div class="text-center">
3-
<h2 class="mb-1 text-3xl font-semibold text-foreground">
4-
Hello Again
5-
<span class="text-primary">!</span>
6-
</h2>
7-
<p class="text-sm text-muted foreground">Enter your credential to access your account.</p>
4+
<h2 class="mb-1 text-3xl font-semibold text-foreground">Hello Again <span class="text-primary">!</span></h2>
5+
<p class="text-sm text-muted-foreground">Enter your credential to access your account.</p>
6+
</div>
7+
8+
<div routerLink="/dashboard">
9+
<app-button full impact="bold" tone="light" shape="rounded" size="medium">
10+
<svg-icon src="assets/icons/google-logo.svg" [svgClass]="'h-6 w-6 mr-2'"> </svg-icon>
11+
Log in with Google
12+
</app-button>
13+
</div>
14+
15+
<div
16+
class="my-4 flex items-center before:mt-0.5 before:flex-1 before:border-t before:border-muted after:mt-0.5 after:flex-1 after:border-t after:border-muted">
17+
<p class="mx-4 mb-0 text-center text-sm text-muted-foreground">or</p>
18+
</div>
19+
20+
<div class="space-y-3 text-left">
21+
<div class="form__group">
22+
<div class="relative">
23+
<input type="text" id="email" [ngClass]="{ 'is__invalid-input': submitted && f['email'].errors }"
24+
class="peer block" placeholder=" " formControlName="email" />
25+
<label for="email"
26+
class="absolute top-2 left-1 z-10 origin-[0] -translate-y-4 scale-95 transform bg-background px-2 text-sm text-muted-foreground duration-300 peer-placeholder-shown:top-1/2 peer-placeholder-shown:-translate-y-1/2 peer-placeholder-shown:scale-100 peer-focus:top-2 peer-focus:-translate-y-4 peer-focus:scale-95 peer-focus:px-2 peer-focus:text-primary">
27+
Email address
28+
</label>
29+
</div>
30+
</div>
831
</div>
932
</form>

src/app/modules/auth/pages/sign-in/sign-in.component.ts

+6-5
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,16 @@
1-
import { NgClass, NgIf } from '@angular/common';
21
import { Component, OnInit } from '@angular/core';
3-
import { FormBuilder, FormGroup, FormsModule, ReactiveFormsModule, Validators } from '@angular/forms';
2+
import { FormBuilder, FormGroup, Validators, FormsModule, ReactiveFormsModule } from '@angular/forms';
43
import { Router, RouterLink } from '@angular/router';
4+
import { NgClass, NgIf } from '@angular/common';
55
import { AngularSvgIconModule } from 'angular-svg-icon';
6+
import { ButtonComponent } from '../../../../shared/components/button/button.component';
67

78
@Component({
89
selector: 'app-sign-in',
9-
standalone: true,
10-
imports: [FormsModule, ReactiveFormsModule, RouterLink, AngularSvgIconModule, NgClass, NgIf],
1110
templateUrl: './sign-in.component.html',
12-
styleUrl: './sign-in.component.scss'
11+
styleUrls: ['./sign-in.component.scss'],
12+
standalone: true,
13+
imports: [FormsModule, ReactiveFormsModule, RouterLink, AngularSvgIconModule, NgClass, NgIf, ButtonComponent],
1314
})
1415
export class SignInComponent implements OnInit {
1516
form!: FormGroup;

0 commit comments

Comments
 (0)