Make appeal form centered and create landing page
This commit is contained in:
parent
d2e064e2b4
commit
fcb64db137
|
|
@ -7,12 +7,14 @@
|
|||
</app-header>
|
||||
<main>
|
||||
<section class="darkmodeSection appeal-container">
|
||||
<section class="columnSection">
|
||||
<div class="columnContainer">
|
||||
<div class="columnParagraph">
|
||||
<p>hi</p>
|
||||
</div>
|
||||
</div>
|
||||
<section class="formPage">
|
||||
<img ngSrc="/public/img/logos/logo.png" alt="Discord" height="319" width="550"/>
|
||||
<h1>Punishment Appeal</h1>
|
||||
<p>We aim to respond within 48 hours.</p>
|
||||
<button mat-raised-button>
|
||||
<mat-icon>send</mat-icon>
|
||||
Minecraft Appeal
|
||||
</button>
|
||||
</section>
|
||||
</section>
|
||||
</main>
|
||||
|
|
|
|||
|
|
@ -14,3 +14,11 @@ main {
|
|||
flex-direction: column;
|
||||
overflow-y: auto;
|
||||
}
|
||||
|
||||
.formPage {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
text-align: center;
|
||||
margin: auto;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -2,11 +2,17 @@ import {AfterViewInit, Component, ElementRef, OnInit, Renderer2} from '@angular/
|
|||
import {FormControl, FormGroup, Validators} from '@angular/forms';
|
||||
import {AppealsService, MinecraftAppeal} from '@api';
|
||||
import {HeaderComponent} from '@header/header.component';
|
||||
import {NgOptimizedImage} from '@angular/common';
|
||||
import {MatButtonModule} from '@angular/material/button';
|
||||
import {MatIconModule} from '@angular/material/icon';
|
||||
|
||||
@Component({
|
||||
selector: 'app-appeal',
|
||||
imports: [
|
||||
HeaderComponent
|
||||
HeaderComponent,
|
||||
NgOptimizedImage,
|
||||
MatButtonModule,
|
||||
MatIconModule
|
||||
],
|
||||
templateUrl: './appeal.component.html',
|
||||
styleUrl: './appeal.component.scss'
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user