member_webapp/@overflow/meta/component/meta-crawler-input-item.component.html

17 lines
766 B
HTML
Raw Normal View History

2018-06-05 11:29:35 +00:00
<p-panel [showHeader]="false">
<div *ngIf="metaCrawlerInputItems; else info" class="ui-g ui-width-100-" style="height: 180px; overflow: auto">
<div class="ui-g-12" *ngFor="let metaCrawlerInputItem of metaCrawlerInputItems">
<span class="md-inputfield">
<input id="name" type="text" value="{{metaCrawlerInputItem.defaultValue}}" pInputText />
<label for="name">{{metaCrawlerInputItem.name}}</label>
</span>
</div>
</div>
<ng-template #info>
<div>개발자의 배려가 돋보이는 친절한 안내 메시지</div>
</ng-template>
<div dir="rtl">
<button *ngIf="crawler" type="button" label="Test" icon="ui-icon-send" pButton class="ui-button-width-fit" (click)="testCredentials()"></button>
</div>
</p-panel>