member_webapp/@overflow/discovery/component/ip-input.component.html

12 lines
917 B
HTML
Raw Normal View History

2018-05-30 09:39:26 +00:00
<div class="ui-inputgroup">
<span style="margin-right: 18px">{{title}} </span>
<input [disabled]="fixed >= 0"type="text" pInputText placeholder="127" maxlength="3" [(ngModel)]="first" value="{{first}}" (keyup)="onIpInput($event)">
2018-06-09 07:47:07 +00:00
<span class="ui-inputgroup-addon" style="min-width: 5px !important">.</span>
2018-05-30 09:39:26 +00:00
<input [disabled]="fixed > 1" type="text" pInputText placeholder="0" maxlength="3" [(ngModel)]="second" value="{{second}}" (keyup)="onIpInput($event)">
2018-06-09 07:47:07 +00:00
<span class="ui-inputgroup-addon" style="min-width: 5px !important">.</span>
2018-05-30 09:39:26 +00:00
<input [disabled]="fixed > 2" type="text" pInputText placeholder="0" maxlength="3" [(ngModel)]="third" value="{{third}}" (keyup)="onIpInput($event)">
2018-06-09 07:47:07 +00:00
<span class="ui-inputgroup-addon" style="min-width: 5px !important">.</span>
2018-05-30 09:39:26 +00:00
<input type="text" pInputText placeholder="1" maxlength="3" [(ngModel)]="fourth" value="{{fourth}}" (keyup)="onIpInput($event)">
</div>