|
|
|
@ -1,18 +1,56 @@
|
|
|
|
|
<div class="container">
|
|
|
|
|
<img class="landing-header" src="{{baseUrl}}/images/logo.png" width="300" />
|
|
|
|
|
<div id="area" class="landing-block shadow">
|
|
|
|
|
|
|
|
|
|
<mat-horizontal-stepper linear #stepper>
|
|
|
|
|
<mat-step >
|
|
|
|
|
<form >
|
|
|
|
|
<ng-template matStepLabel>Welcome</ng-template>
|
|
|
|
|
<p>Welcome to Ombi, this wizard will quickly take you through the inital setup!</p>
|
|
|
|
|
<div>
|
|
|
|
|
<button mat-button matStepperNext>Next</button>
|
|
|
|
|
</div>
|
|
|
|
|
</form>
|
|
|
|
|
</mat-step>
|
|
|
|
|
|
|
|
|
|
<div class="media">
|
|
|
|
|
<div id="contentBody" class="media-body">
|
|
|
|
|
<h4 class="media-heading landing-title" id="statusTitle">Welcome to Ombi</h4>
|
|
|
|
|
<div class="form-group">
|
|
|
|
|
<small>we are just going to run though the initial Ombi setup!</small>
|
|
|
|
|
<mat-step [optional]="true">
|
|
|
|
|
<form >
|
|
|
|
|
<ng-template matStepLabel>Plex</ng-template>
|
|
|
|
|
<wizard-plex></wizard-plex>
|
|
|
|
|
<div>
|
|
|
|
|
<button mat-button matStepperPrevious>Back</button>
|
|
|
|
|
<button mat-button matStepperNext>Next</button>
|
|
|
|
|
</div>
|
|
|
|
|
</form>
|
|
|
|
|
</mat-step>
|
|
|
|
|
|
|
|
|
|
<div style="text-align: center; margin-top: 20px">
|
|
|
|
|
<a (click)="next()" data-test="nextbtn" class="btn btn-primary-outline">Next</a>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
<mat-step [optional]="true">
|
|
|
|
|
<form >
|
|
|
|
|
<ng-template matStepLabel>Emby</ng-template>
|
|
|
|
|
<wizard-emby></wizard-emby>
|
|
|
|
|
<div>
|
|
|
|
|
<button mat-button matStepperPrevious>Back</button>
|
|
|
|
|
<button mat-button matStepperNext>Next</button>
|
|
|
|
|
</div>
|
|
|
|
|
</form>
|
|
|
|
|
</mat-step>
|
|
|
|
|
|
|
|
|
|
<mat-step>
|
|
|
|
|
<form >
|
|
|
|
|
<ng-template matStepLabel>Create a local admin</ng-template>
|
|
|
|
|
<wizard-local-admin [user]="localUser"></wizard-local-admin>
|
|
|
|
|
<div>
|
|
|
|
|
<button mat-button matStepperPrevious>Back</button>
|
|
|
|
|
<button mat-button matStepperNext>Next</button>
|
|
|
|
|
</div>
|
|
|
|
|
</form>
|
|
|
|
|
</mat-step>
|
|
|
|
|
|
|
|
|
|
<mat-step>
|
|
|
|
|
<ng-template matStepLabel>Done</ng-template>
|
|
|
|
|
All setup! Press Finish to continue and login to Ombi!
|
|
|
|
|
<div>
|
|
|
|
|
<button mat-button matStepperPrevious (click)="createUser()">Finish</button>
|
|
|
|
|
<button mat-button (click)="stepper.reset()">Reset</button>
|
|
|
|
|
</div>
|
|
|
|
|
</mat-step>
|
|
|
|
|
</mat-horizontal-stepper>
|
|
|
|
|
</div>
|
|
|
|
|