nise/nise-frontend/src/app/app.component.html

39 lines
1.8 KiB
HTML
Raw Normal View History

2024-02-14 16:43:11 +00:00
<div class="header">
2024-03-01 11:52:12 +00:00
<div>
<a [routerLink]="['/']">
<img src="/assets/keisatsu-chan.png" class="header-image" alt="keisatsu-chan~!">
</a>
</div>
<div>
<h2 style="margin-top: 6px">/nise.stedos.dev/</h2>
2024-03-01 11:52:12 +00:00
<ul style="font-size: 15px; line-height: 19px;">
<li><a [routerLink]="['/']">./home</a></li>
<li><a [routerLink]="['/sus']">./suspicious-scores</a></li>
<li><a [routerLink]="['/stolen']">./stolen-replays</a></li>
<li><a [routerLink]="['/search']">./advanced-search</a></li>
</ul>
<form (ngSubmit)="onSubmit()">
2024-03-05 12:32:08 +00:00
<input style="width: 100%" type="text" [(ngModel)]="term" [ngModelOptions]="{standalone: true}" id="nise-osu-username" required minlength="2" maxlength="50" placeholder="Search for users...">
2024-03-01 11:52:12 +00:00
</form>
2024-03-07 17:25:35 +00:00
<div style="margin-top: 3px">
2024-03-01 11:52:12 +00:00
<ng-container *ngIf="this.userService.isUserLoggedIn()">
2024-03-09 13:33:12 +00:00
hi, <span class="user-details" [title]="this.userService.currentUser?.username"><a [routerLink]="['/profile']"> {{this.userService.currentUser?.username}}</a></span> <a class="logout-btn" [href]="this.userService.getLogoutUrl()">Logout</a>
2024-03-01 11:52:12 +00:00
</ng-container>
<ng-container *ngIf="!this.userService.isUserLoggedIn()">
<a [href]="this.userService.getLoginUrl()">Login</a>
</ng-container>
</div>
</div>
</div>
2024-03-09 13:33:12 +00:00
<div class="main term text-center statistics">
Players: {{ this.statistics?.total_users | number }} | Beatmaps: {{ this.statistics?.total_beatmaps | number }} | Scores: {{ this.statistics?.total_scores | number }}
<ng-container *ngIf="this.statistics?.total_bans">
| <a [routerLink]="['/banlist']">Bans: {{ this.statistics?.total_bans | number }}</a>
</ng-container>
</div>
2024-03-01 11:52:12 +00:00
<router-outlet></router-outlet>
<div class="text-center version">
2025-06-22 15:56:25 +00:00
v20250622
2024-02-14 16:43:11 +00:00
</div>