AltitudeWeb/frontend/src/app/bans/bans.component.html

30 lines
1.1 KiB
HTML
Raw Normal View History

2025-04-11 19:20:02 +00:00
<ng-container>
<app-header [current_page]="'bans'" height="200px" background_image="/public/img/backgrounds/staff.png"
[overlay_gradient]="0.5">>
<div class="title" header-content>
<h1>Punishment History</h1>
</div>
</app-header>
2025-04-11 20:24:25 +00:00
<main>
<section class="darkmodeSection">
<div class="container">
<div class="columnSection">
<div class="historyTypeContainer">
<button class="button-outer" (click)="punishmentType = 'all'">All</button>
<button class="button-outer" (click)="punishmentType = 'ban'">Bans</button>
<button class="button-outer" (click)="punishmentType = 'mute'">Mutes</button>
<button class="button-outer" (click)="punishmentType = 'warn'">Warnings</button>
2025-04-11 20:24:25 +00:00
</div>
<div class="historySearchContainer">
<input class="historySearch" type="text" placeholder="Search..">
2025-04-11 20:24:25 +00:00
</div>
</div>
<div class="historyTable">
<app-history [userType]="userType" [punishmentType]="punishmentType"></app-history>
</div>
2025-04-11 19:56:46 +00:00
</div>
2025-04-11 20:24:25 +00:00
</section>
</main>
2025-04-11 19:20:02 +00:00
</ng-container>