mirror of
https://github.com/GNS3/gns3-web-ui.git
synced 2025-05-28 13:04:21 +00:00
27 lines
941 B
HTML
27 lines
941 B
HTML
<div class="content">
|
|
<div class="default-header">
|
|
<div class="row">
|
|
<h1 class="col">Console settings</h1>
|
|
</div>
|
|
</div>
|
|
<div class="default-content">
|
|
<mat-card>
|
|
<form [formGroup]="consoleForm">
|
|
<mat-form-field class="form-field">
|
|
<input
|
|
matInput type="text"
|
|
formControlName="runner"
|
|
placeholder="Predefined command">
|
|
</mat-form-field>
|
|
<mat-form-field class="form-field">
|
|
<textarea matInput formControlName="command" placeholder="Command"></textarea>
|
|
</mat-form-field>
|
|
</form>
|
|
</mat-card>
|
|
<div class="buttons-bar">
|
|
<button class="cancel-button" (click)="goBack()" mat-button>Cancel</button>
|
|
<button mat-raised-button color="primary" (click)="onSave()">Save</button><br/>
|
|
</div>
|
|
</div>
|
|
</div>
|