mirror of
https://github.com/Ombi-app/Ombi.git
synced 2025-08-14 02:26:55 -07:00
#435 Started the wizard
This commit is contained in:
parent
bd3df2c1b8
commit
1f4ece8b5b
14 changed files with 231 additions and 26 deletions
|
@ -10,10 +10,9 @@
|
|||
}
|
||||
@Html.LoadWizardAssets()
|
||||
|
||||
<img class="landing-header" src="@formAction/Content/images/logo.png" width="300" />
|
||||
<img class="landing-header" src="@formAction/Content/images/logo-cropped.png" width="300" />
|
||||
<div id="area" class="landing-block shadow">
|
||||
|
||||
|
||||
<div class="media">
|
||||
<div id="contentBody" class="media-body">
|
||||
<h4 class="media-heading landing-title" id="statusTitle">Welcome to Ombi</h4>
|
||||
|
@ -31,6 +30,60 @@
|
|||
|
||||
<!--Templates-->
|
||||
|
||||
<script id="mediaApplicationChoice" type="text/html">
|
||||
<div>
|
||||
<h4 class="media-heading landing-title wizard-heading" id="statusTitle">Please choose your media server</h4>
|
||||
<div class="form-group">
|
||||
<div class="row">
|
||||
<a href="#" id="embyImg">
|
||||
<img class="wizard-img" src="@formAction/Content/images/emby-logo-dark.jpg" />
|
||||
</a>
|
||||
</div>
|
||||
<div class="row">
|
||||
<a href="#" id="plexImg">
|
||||
<img class="wizard-img" src="@formAction/Content/images/plex-logo-reversed.png" />
|
||||
</a>
|
||||
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</script>
|
||||
|
||||
<script id="embyApiKey" type="text/html">
|
||||
<form method="post" action="@formAction/wizard/embyAuth" id="embyAuthForm">
|
||||
<h4 class="media-heading landing-title">Emby Authentication</h4>
|
||||
<div class="form-group">
|
||||
<label for="Ip" class="control-label">Emby Hostname or IP Address</label>
|
||||
<div>
|
||||
<input type="text" class="form-control form-control-custom " id="Ip" name="Ip" placeholder="192.168.1.1">
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="form-group">
|
||||
<label for="portNumber" class="control-label">Port</label>
|
||||
|
||||
<div>
|
||||
<input type="text" class="form-control form-control-custom " id="portNumber" name="Port" placeholder="8069">
|
||||
</div>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<div class="checkbox">
|
||||
<input type="checkbox" id="Ssl" name="Ssl"><label for="Ssl">SSL</label>
|
||||
</div>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label for="username" class="control-label">Api Key</label>
|
||||
<div>
|
||||
<input type="text" class="form-control form-control-custom" id="apiKey" name="ApiKey" placeholder="ApiKey">
|
||||
</div>
|
||||
</div>
|
||||
<div style="text-align: center; margin-top: 20px">
|
||||
<a href="#" id="embyApiKeySave" class="btn btn-primary-outline">Next</a>
|
||||
</div>
|
||||
</form>
|
||||
</script>
|
||||
|
||||
<script id="plexAuthArea" type="text/html">
|
||||
<form method="post" action="@formAction/wizard/plexAuth" id="plexAuthForm">
|
||||
<h4 class="media-heading landing-title">Plex Authentication</h4>
|
||||
|
@ -103,7 +156,7 @@
|
|||
<input type="checkbox" id="SearchForMusic" name="SearchForMusic"><label id="SearchForMusicLabel" for="SearchForMusic">Allow searching for Music</label>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
<div class="form-group">
|
||||
<div style="text-align: center; margin-top: 20px">
|
||||
<a href="#" id="submitPlexRequest" class="btn btn-primary-outline">Next</a>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue