PeerTube/client/src/app/videos/+video-watch/comment/video-comment-add.component...

20 lines
613 B
HTML
Raw Normal View History

2017-12-27 16:11:53 +01:00
<form novalidate [formGroup]="form" (ngSubmit)="formValidated()">
2018-01-03 17:25:47 +01:00
<div class="avatar-and-textarea">
<img [src]="getUserAvatarUrl()" alt="Avatar" />
<div class="form-group">
<textarea placeholder="Add comment..." formControlName="text" [ngClass]="{ 'input-error': formErrors['text'] }" #textarea>
</textarea>
<div *ngIf="formErrors.text" class="form-error">
{{ formErrors.text }}
</div>
2017-12-27 16:11:53 +01:00
</div>
</div>
<div class="submit-comment">
<button *ngIf="isAddButtonDisplayed()" [ngClass]="{ disabled: !form.valid }">
Post comment
</button>
</div>
</form>