AltitudeWeb/frontend/src/app/pages/forms/forms.component.html

33 lines
1017 B
HTML

<ng-container>
<app-header [current_page]="currentPage" height="200px" background_image="/public/img/backgrounds/staff.png"
[overlay_gradient]="0.5">
<div class="title" header-content>
<h1>{{ formTitle }}</h1>
</div>
</app-header>
<main>
<section class="darkmodeSection">
<section class="columnSection">
<div class="columnContainer">
<div class="columnParagraph">
<a [routerLink]="['/forms/appeal']">
<h2>Appeal</h2>
<p>
If you feel your punishment was unjust, click here to appeal.
</p>
</a>
</div>
<div class="columnParagraph">
<a [routerLink]="['/forms/staff-application']">
<h2>Staff Application</h2>
<p>
Interested in becoming a moderator on our server? Apply here.
</p>
</a>
</div>
</div>
</section>
</section>
</main>
</ng-container>