This repository has been archived on 2023-06-20. You can view files and clone it, but cannot push or open issues or pull requests.
Angular_App/src/app/pages/SingleThread/send-post/send-post.component.html
RakVhalate e2cca81f81
All checks were successful
continuous-integration/drone/push Build is passing
Sdelal formochku sozdaniya treda.
2022-12-08 01:24:35 +10:00

13 lines
701 B
HTML

<div class="send_post">
<h4>Поведай миру что-нибудь хорошее.</h4>
<br>
<textarea type="text" rows="8" cols="45" placeholder="Печатать сюда" #textToPost></textarea>
<p>
<button (click)="sendPost(textToPost.value) ; textToPost.value=''" >Отправить</button>
</p>
<h1>Загрузить картинку:</h1>
<input type="file" #file placeholder="Загрузить картинку" (change)="sendPic($event)" style="display:none;">
<button type="button" class="btn btn-success" (click)="file.click()">Загрузить картинку</button>
<div *ngFor="let singlePic of filename" >Картинка: {{singlePic}}</div>
</div>