pracowniaapp2Front/src/app/right-panel/right-panel.component.html

24 lines
738 B
HTML

<mat-card class="example-card" >
<mat-card-header>
<mat-card-title>Add a new mikrowpis!</mat-card-title>
<mat-card-subtitle>Down here!</mat-card-subtitle>
</mat-card-header>
<mat-card-content>
<mat-form-field>
<input matInput placeholder="Imię">
</mat-form-field>
<mat-form-field>
<textarea [(ngModel)]="text" matInput placeholder="Co ci chodzi po głowie :D">
</textarea>
</mat-form-field>
<button mat-button color="primary" style="width:100%;margin-bottom:1em">Add!</button>
<div>
<span (click)="addEmoji(emoji)"matRipple style="cursor: pointer" *ngFor="let emoji of emoji_list">{{emoji}}</span>
</div>
</mat-card-content>
</mat-card>