mirror of
https://github.com/GNS3/gns3-web-ui.git
synced 2025-05-08 11:38:38 +00:00
17 lines
597 B
HTML
17 lines
597 B
HTML
<h1 mat-dialog-title>Add server</h1>
|
|
<div mat-dialog-content>
|
|
<mat-form-field>
|
|
<input matInput tabindex="1" [(ngModel)]="server.name" placeholder="Name">
|
|
</mat-form-field>
|
|
<mat-form-field>
|
|
<input matInput tabindex="1" [(ngModel)]="server.ip" placeholder="IP">
|
|
</mat-form-field>
|
|
<mat-form-field>
|
|
<input matInput tabindex="1" [(ngModel)]="server.port" placeholder="Port">
|
|
</mat-form-field>
|
|
</div>
|
|
<div mat-dialog-actions>
|
|
<button mat-button (click)="onAddClick()" tabindex="2">Add</button>
|
|
<button mat-button (click)="onNoClick()" tabindex="-1">No Thanks</button>
|
|
</div>
|