diff --git a/packages/bridge-ui/src/app/components/login-dialog/login-dialog.component.html b/packages/bridge-ui/src/app/components/login-dialog/login-dialog.component.html
deleted file mode 100644
index 55567a0..0000000
--- a/packages/bridge-ui/src/app/components/login-dialog/login-dialog.component.html
+++ /dev/null
@@ -1,18 +0,0 @@
-
\ No newline at end of file
diff --git a/packages/bridge-ui/src/app/components/login-dialog/login-dialog.component.scss b/packages/bridge-ui/src/app/components/login-dialog/login-dialog.component.scss
deleted file mode 100644
index 3fc752e..0000000
--- a/packages/bridge-ui/src/app/components/login-dialog/login-dialog.component.scss
+++ /dev/null
@@ -1,12 +0,0 @@
-.signInForm {
- width: 400px;
- padding: 12px 24px 24px;
-
- igx-input-group + igx-input-group {
- margin-top: 24px;
- }
-}
-
-.full-width {
- width: 100%;
-}
\ No newline at end of file
diff --git a/packages/bridge-ui/src/app/components/login-dialog/login-dialog.component.spec.ts b/packages/bridge-ui/src/app/components/login-dialog/login-dialog.component.spec.ts
deleted file mode 100644
index 722dd5d..0000000
--- a/packages/bridge-ui/src/app/components/login-dialog/login-dialog.component.spec.ts
+++ /dev/null
@@ -1,23 +0,0 @@
-import { ComponentFixture, TestBed } from '@angular/core/testing';
-
-import { LoginDialogComponent } from './login-dialog.component';
-
-describe('LoginDialogComponent', () => {
- let component: LoginDialogComponent;
- let fixture: ComponentFixture;
-
- beforeEach(async () => {
- await TestBed.configureTestingModule({
- imports: [LoginDialogComponent]
- })
- .compileComponents();
-
- fixture = TestBed.createComponent(LoginDialogComponent);
- component = fixture.componentInstance;
- fixture.detectChanges();
- });
-
- it('should create', () => {
- expect(component).toBeTruthy();
- });
-});
diff --git a/packages/bridge-ui/src/app/components/login-dialog/login-dialog.component.ts b/packages/bridge-ui/src/app/components/login-dialog/login-dialog.component.ts
deleted file mode 100644
index 71c182e..0000000
--- a/packages/bridge-ui/src/app/components/login-dialog/login-dialog.component.ts
+++ /dev/null
@@ -1,62 +0,0 @@
-import { Component } from '@angular/core';
-import { CommonModule } from '@angular/common';
-import { ReactiveFormsModule, FormControl } from '@angular/forms';
-import { FormsModule } from '@angular/forms';
-
-import { MatButtonModule } from '@angular/material/button';
-import { MatDialogModule } from '@angular/material/dialog';
-import { MatInputModule } from '@angular/material/input';
-import { MatFormFieldModule } from '@angular/material/form-field';
-
-import {
- MatDialog,
- MAT_DIALOG_DATA,
- MatDialogRef,
- MatDialogTitle,
- MatDialogContent,
- MatDialogActions,
- MatDialogClose,
-} from '@angular/material/dialog';
-
-import { AuthService } from '../../services/auth.service';
-
-@Component({
- selector: 'app-login-dialog',
- standalone: true,
- imports: [
- CommonModule,
- ReactiveFormsModule,
- MatButtonModule,
- MatDialogModule,
- MatInputModule,
- MatFormFieldModule,
- FormsModule,
- MatDialogTitle,
- MatDialogContent,
- MatDialogActions,
- MatDialogClose,
- ],
- templateUrl: './login-dialog.component.html',
- styleUrl: './login-dialog.component.scss'
-})
-export class LoginDialogComponent {
- username = new FormControl('');
- password = new FormControl('');
-
- constructor(private authService: AuthService) {}
-
- login(): void {
- let username = this.username.value != undefined ? this.username.value : "";
- let password = this.password.value != undefined ? this.password.value : "";
-
- /*
- this.authService.login(username, password).subscribe(data => {
- console.log(data)
- if (data.access_token) {
- localStorage.setItem('token', data.access_token);
- window.location.reload();
- }
- })
- */
- }
-}