2025-10-03 11:56:55 +02:00
|
|
|
import { Component } from '@angular/core';
|
|
|
|
|
|
|
|
@Component({
|
|
|
|
selector: 'app-osm',
|
|
|
|
imports: [],
|
|
|
|
templateUrl: './osm.html',
|
|
|
|
styleUrl: './osm.scss'
|
|
|
|
})
|
|
|
|
export class Osm {
|
2025-10-03 14:00:35 +02:00
|
|
|
osmPseudo: string='';
|
|
|
|
isLogginIn: any = false;
|
2025-10-03 11:56:55 +02:00
|
|
|
|
2025-10-03 14:00:35 +02:00
|
|
|
logout() {
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
login() {
|
|
|
|
|
|
|
|
}
|
2025-10-03 11:56:55 +02:00
|
|
|
}
|