added login form
This commit is contained in:
@@ -1,5 +1,3 @@
|
||||
<p>welcome works!</p>
|
||||
|
||||
<h1 class="text-3xl font-bold underline">
|
||||
Hello world!
|
||||
</h1>
|
||||
<div class="w-90 p-5 rounded-2xl shadow-lg shadow-gray-400 m-auto">
|
||||
<app-login></app-login>
|
||||
</div>
|
||||
@@ -1,9 +1,12 @@
|
||||
import { Component } from '@angular/core';
|
||||
import {CreateBook} from "../../components/create-book/create-book";
|
||||
import {Login} from "../../components/login/login";
|
||||
|
||||
@Component({
|
||||
selector: 'app-welcome',
|
||||
imports: [],
|
||||
imports: [
|
||||
Login
|
||||
],
|
||||
templateUrl: './welcome.html',
|
||||
styleUrl: './welcome.css'
|
||||
})
|
||||
|
||||
Reference in New Issue
Block a user