Last change
on this file since 8423429 was 8423429, checked in by AngelNasev <angel.nasev@…>, 17 months ago |
Add backend and frontend projects
|
-
Property mode
set to
100644
|
File size:
834 bytes
|
Line | |
---|
1 | <div class="parent-container">
|
---|
2 | <div class="container">
|
---|
3 | <form class="example-form">
|
---|
4 | <div class="add-question">
|
---|
5 | <label>Наслов</label>
|
---|
6 | <input name="title"
|
---|
7 | [(ngModel)]="title">
|
---|
8 | <label>Содржина</label>
|
---|
9 | <textarea name="content" [(ngModel)]="content"></textarea>
|
---|
10 | <label>Категории</label>
|
---|
11 | <ng-multiselect-dropdown
|
---|
12 | [placeholder]=""
|
---|
13 | [settings]="dropdownSettings"
|
---|
14 | [data]="categories"
|
---|
15 | [(ngModel)]="selectedItems"
|
---|
16 | name="categories">
|
---|
17 | </ng-multiselect-dropdown>
|
---|
18 | <div class="btn-div">
|
---|
19 | <button (click)="submit()"
|
---|
20 | [disabled]="title==null && content==null" type="button">Прашај
|
---|
21 | </button>
|
---|
22 | </div>
|
---|
23 | </div>
|
---|
24 | </form>
|
---|
25 | </div>
|
---|
26 |
|
---|
27 | </div>
|
---|
Note:
See
TracBrowser
for help on using the repository browser.