Files
agent/packages/uhk-web/src/app/components/device/recovery-mode/recovery-mode.component.html
2018-12-18 00:10:02 +01:00

32 lines
998 B
HTML

<div class="full-height">
<div class="flex-container">
<div>
<h1>
<i class="fa fa-wrench"></i>
<span>Fix device</span>
</h1>
<p>
Your device seems to be broken. No worries, Agent can fix it.
</p>
<p>
<button class="btn btn-primary"
type="button"
[disabled]="flashFirmwareButtonDisbabled$ | async"
(click)="onRecoveryDevice()">Fix device
</button>
<button class="btn btn-default"
type="button"
[disabled]="updatingFirmware$ | async"
(click)="onClose()">Close
</button>
</p>
</div>
<div class="flex-grow">
<xterm [logs]="xtermLog$ | async"></xterm>
</div>
<div class="flex-footer">
</div>
</div>
</div>