added login form

This commit is contained in:
2025-11-12 16:35:20 +01:00
parent 07729fd236
commit 4bdae0252b
7 changed files with 69 additions and 10 deletions

View File

@@ -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>

View File

@@ -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'
})