mirror of
https://github.com/inspec/inspec
synced 2024-12-18 17:14:33 +00:00
28 lines
861 B
HTML
28 lines
861 B
HTML
<div class="terminal-nav">
|
|
<!--TODO: make these functional-->
|
|
<span> < </span>
|
|
<span> > </span>
|
|
<span> x </span>
|
|
</div>
|
|
|
|
<div class="guide" *ngIf="counter === 0">
|
|
Welcome to the interactive InSpec demo!
|
|
<p>
|
|
This tutorial is great for getting familiar with InSpec. There are 3 sections:
|
|
</p>
|
|
<ol>
|
|
<!--TODO: give these real links-->
|
|
<li><a href="...">InSpec commandline interface</a></li>
|
|
<li><a href="...">InSpec interactive shell</a></li>
|
|
<li><a href="...">Create test and compliance profile</a></li>
|
|
</ol>
|
|
<p>Use the command "next" to move forward or "prev" to move backwards.</p>
|
|
</div>
|
|
|
|
<div class="guide" *ngIf="counter > 0">
|
|
<pre > {{ instructions }} </pre>
|
|
</div>
|
|
|
|
<div class="cli">
|
|
<xterm-terminal (stepNumber)="updateInstructions(stepNumber=$event)" [responsesArray]="responsesArray"></xterm-terminal>
|
|
</div>
|