aboutsummaryrefslogtreecommitdiff
path: root/frontend/src/app/_pages/register-page/register-page.component.ts
blob: 3add63a490371ce31ec25854d25548c89c89e516 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
import { Component, OnInit } from '@angular/core';
import { Router } from '@angular/router';
import { AuthService } from 'src/app/_services/auth.service';

@Component({
  selector: 'app-register-page',
  templateUrl: './register-page.component.html',
  styleUrls: ['./register-page.component.css']
})
export class RegisterPageComponent implements OnInit {

  ngOnInit(): void {
  }
}