mirror of
https://github.com/GNS3/gns3-web-ui.git
synced 2025-05-21 17:58:00 +00:00
10 lines
463 B
HTML
10 lines
463 B
HTML
<mat-card class="info" *ngIf="discoveredServer">
|
|
<mat-card-content align="center">
|
|
We've discovered GNS3 server on <b>{{ discoveredServer.ip }}:{{ discoveredServer.port }}</b>, would you like to add to the list?
|
|
</mat-card-content>
|
|
<mat-card-actions align="right">
|
|
<button mat-button color="accent" (click)="ignore(discoveredServer)">NO</button>
|
|
<button mat-button (click)="accept(discoveredServer)">YES</button>
|
|
</mat-card-actions>
|
|
</mat-card>
|