mirror of
https://github.com/GNS3/gns3-web-ui.git
synced 2025-05-02 08:42:50 +00:00
21 lines
765 B
HTML
21 lines
765 B
HTML
<div class="content">
|
|
<div class="default-header">
|
|
<div class="row">
|
|
<h1 class="col">New cloud node template</h1>
|
|
</div>
|
|
</div>
|
|
<div class="default-content">
|
|
<mat-card class="matCard">
|
|
<form [formGroup]="formGroup">
|
|
<mat-form-field class="form-field">
|
|
<input formControlName="templateName" matInput type="text" placeholder="Template name">
|
|
</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()">Add template</button>
|
|
</div>
|
|
</div>
|
|
</div>
|