check many hexes
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
Simple_Not 2023-07-18 23:23:27 +10:00
parent c5a4c8e6ed
commit 421fecce4d

View File

@ -6,20 +6,22 @@
{% include 'navbar.html' %} {% include 'navbar.html' %}
<div class="row"> <div class="row">
<div class="posting_form"> <div class="card">
<h4>Создай то, о чем будут говорить многие в /{{board}}/.</h4> <div class="posting_form">
<br> <h4>Создай то, о чем будут говорить многие в /{{board}}/.</h4>
<textarea type="text" rows="8" cols="45" placeholder="Печатать сюда" #textForm [(ngModel)] = "inputText"></textarea> <br>
<p> <textarea type="text" rows="8" cols="45" placeholder="Печатать сюда" #textForm [(ngModel)] = "inputText"></textarea>
<button (click)="create()" >Отправить</button> <p>
</p> <button (click)="create()" >Отправить</button>
<h1>Загрузить картинку:</h1> </p>
<input type="file" #file placeholder="Загрузить картинку" (change)="sendPic($event)" style="display:none;"> <h1>Загрузить картинку:</h1>
<button type="button" class="btn btn-success" (click)="file.click()">Загрузить картинку</button> <input type="file" #file placeholder="Загрузить картинку" (change)="sendPic($event)" style="display:none;">
<div *ngFor="let singlePic of inputImages" >Картинка: {{singlePic}}</div> <button type="button" class="btn btn-success" (click)="file.click()">Загрузить картинку</button>
<p> <div *ngFor="let singlePic of inputImages" >Картинка: {{singlePic}}</div>
<button (click)="eraseData()" >Отмена</button> <p>
</p> <button (click)="eraseData()" >Отмена</button>
</p>
</div>
</div> </div>
</div> </div>