mirror of
https://github.com/GNS3/gns3-web-ui.git
synced 2025-05-28 13:04:21 +00:00
25 lines
885 B
HTML
25 lines
885 B
HTML
<div class="content">
|
|
<div class="default-header">
|
|
<div class="row">
|
|
<h1 class="col">Copy IOS router template</h1>
|
|
</div>
|
|
</div>
|
|
<div class="default-content">
|
|
<mat-card class="matCard">
|
|
<form [formGroup]="formGroup">
|
|
<mat-form-field class="form-field">
|
|
<input
|
|
matInput type="text"
|
|
[(ngModel)]="templateName"
|
|
placeholder="Name"
|
|
formControlName="templateName"/>
|
|
</mat-form-field>
|
|
</form>
|
|
</mat-card>
|
|
<div class="buttons-bar">
|
|
<button mat-button class="cancel-button" (click)="goBack()">Cancel</button>
|
|
<button mat-raised-button color="primary" (click)="addTemplate()">Copy template</button>
|
|
</div>
|
|
</div>
|
|
</div>
|