diff --git a/Ombi/Ombi/Ombi.csproj b/Ombi/Ombi/Ombi.csproj index 49d424003..a94d5f0ff 100644 --- a/Ombi/Ombi/Ombi.csproj +++ b/Ombi/Ombi/Ombi.csproj @@ -55,6 +55,15 @@ + + + + + + PreserveNewest + + + PreserveNewest @@ -62,9 +71,6 @@ - - - diff --git a/Ombi/Ombi/wwwroot/app/wizard/createadmin/createadmin.component.html b/Ombi/Ombi/wwwroot/app/wizard/createadmin/createadmin.component.html new file mode 100644 index 000000000..270d1d62a --- /dev/null +++ b/Ombi/Ombi/wwwroot/app/wizard/createadmin/createadmin.component.html @@ -0,0 +1,20 @@ + +

Create the Admin account

+This account will be used to configure your settings and also manage all of the requests. Note: this should not be the same as your Plex/Emby account (you can change this later in the User Management Settings) +
+
+ + +
+
+
+ + +
+
+ +
+
+ +
+
\ No newline at end of file diff --git a/Ombi/Ombi/wwwroot/app/wizard/createadmin/createadmin.component.ts b/Ombi/Ombi/wwwroot/app/wizard/createadmin/createadmin.component.ts new file mode 100644 index 000000000..0ee4d5175 --- /dev/null +++ b/Ombi/Ombi/wwwroot/app/wizard/createadmin/createadmin.component.ts @@ -0,0 +1,23 @@ +import { Component } from '@angular/core'; +import { Router } from '@angular/router'; + +import { AuthService } from '../../auth/auth.service'; +import { NotificationService } from '../../services/notification.service'; + +@Component({ + selector: 'ombi', + moduleId: module.id, + templateUrl: './plex.component.html', +}) +export class PlexComponent { + + constructor(private authService: AuthService, private notificationService: NotificationService) { } + + + username: string; + password: string; + + createUser() { + + } +} \ No newline at end of file