Issue fixing + deletion of profile & logo

This commit is contained in:
2024-05-17 14:50:50 -05:00
parent 0684b9534f
commit df4e2b00e2
23 changed files with 774 additions and 364 deletions

View File

@@ -1,25 +1,19 @@
import { CommonModule } from '@angular/common';
import { Component } from '@angular/core';
import { ButtonModule } from 'primeng/button';
import { CheckboxModule } from 'primeng/checkbox';
import { InputTextModule } from 'primeng/inputtext';
import {StyleClassModule} from 'primeng/styleclass';
import { DropdownModule } from 'primeng/dropdown';
import { FormsModule } from '@angular/forms';
import { SidebarModule } from 'primeng/sidebar';
import { UserService } from '../../services/user.service';
import { SharedModule } from '../../shared/shared/shared.module';
@Component({
selector: 'footer',
standalone: true,
imports: [SharedModule],
imports: [SharedModule, SidebarModule],
templateUrl: './footer.component.html',
styleUrl: './footer.component.scss'
styleUrl: './footer.component.scss',
})
export class FooterComponent {
constructor(public userService:UserService){}
login(){
this.userService.login(window.location.href);
}
privacyVisible = false;
termsVisible = false;
constructor(public userService: UserService) {}
login() {
this.userService.login(window.location.href);
}
}