Skip to content

Commit

Permalink
fixed all build errors
Browse files Browse the repository at this point in the history
  • Loading branch information
Clemo97 committed Feb 9, 2024
1 parent 783bf47 commit ae40690
Show file tree
Hide file tree
Showing 10 changed files with 474 additions and 2 deletions.
433 changes: 433 additions & 0 deletions docs/3rdpartylicenses.txt

Large diffs are not rendered by default.

Binary file added docs/favicon.ico
Binary file not shown.
20 changes: 20 additions & 0 deletions docs/index.html

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions docs/main.b4b35014fc541792.js

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions docs/polyfills.d5a609e375ce3dff.js

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions docs/runtime.f517f21799b56931.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 5 additions & 0 deletions docs/styles.a3fdafb0b0cc3d21.css

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions src/app/app.module.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { HttpClientModule } from '@angular/common/http';
import { BrowserModule } from '@angular/platform-browser';
import { NgModule } from '@angular/core';
import { CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core';
import { FormsModule } from '@angular/forms';
import { ReactiveFormsModule } from '@angular/forms'; // Import ReactiveFormsModule

Expand Down Expand Up @@ -68,6 +68,6 @@ import { FlexLayoutModule } from '@angular/flex-layout';
],
providers: [],
bootstrap: [AppComponent],
// schemas: [CUSTOM_ELEMENTS_SCHEMA]
schemas: [CUSTOM_ELEMENTS_SCHEMA]
})
export class AppModule { }
9 changes: 9 additions & 0 deletions src/app/auth/sign-in/sign-in.component.ts
Original file line number Diff line number Diff line change
@@ -1,13 +1,22 @@
import { Component, OnInit } from '@angular/core';
import { AuthService } from '../../shared/services/auth.service';

import { MaterialModule } from '../../material.module';

import { NgModule } from '@angular/core';
import { CommonModule } from '@angular/common';
import { MatCardModule } from '@angular/material/card';

@Component({
selector: 'app-sign-in',
templateUrl: './sign-in.component.html',
styleUrls: ['./sign-in.component.scss'],
})

export class SignInComponent implements OnInit {

userEmailValue: string = ''; // Initialize with an empty string
userPasswordValue: string = '';
constructor(public authService: AuthService) { }

ngOnInit() { }
Expand Down
2 changes: 2 additions & 0 deletions src/app/material.module.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,14 @@ import { MatInputModule } from '@angular/material/input';
import { MatFormFieldModule } from '@angular/material/form-field';
import { MatIconModule } from '@angular/material/icon';
import { MatToolbarModule } from '@angular/material/toolbar';
import { MatCardModule } from '@angular/material/card';

@NgModule({
imports: [
CommonModule,
MatButtonModule,
MatInputModule,
MatCardModule,
MatFormFieldModule,
MatIconModule,
MatToolbarModule
Expand Down

0 comments on commit ae40690

Please sign in to comment.