mirror of
https://github.com/Start9Labs/start-os.git
synced 2026-04-01 21:13:09 +00:00
* enable switching to https on login page * add trust Root CA to http login page * add node-jose back for setup wiz * add tooltips, branding, logic for launch box spinner display, and enable config to toggle https mode on mocks * cleanup * copy changes * style fixes * abstract component, fix https mocks * always show login from localhost * launch .local when on IP --------- Co-authored-by: Matt Hill <mattnine@protonmail.com>
31 lines
804 B
TypeScript
31 lines
804 B
TypeScript
import { NgModule } from '@angular/core'
|
|
import { RouterModule, Routes } from '@angular/router'
|
|
import { CommonModule } from '@angular/common'
|
|
import { FormsModule } from '@angular/forms'
|
|
import { IonicModule } from '@ionic/angular'
|
|
import { LoginPage } from './login.page'
|
|
import { CAWizardComponent } from './ca-wizard/ca-wizard.component'
|
|
import { SharedPipesModule } from '@start9labs/shared'
|
|
import { TuiHintModule, TuiTooltipModule } from '@taiga-ui/core'
|
|
|
|
const routes: Routes = [
|
|
{
|
|
path: '',
|
|
component: LoginPage,
|
|
},
|
|
]
|
|
|
|
@NgModule({
|
|
imports: [
|
|
CommonModule,
|
|
FormsModule,
|
|
IonicModule,
|
|
SharedPipesModule,
|
|
RouterModule.forChild(routes),
|
|
TuiTooltipModule,
|
|
TuiHintModule,
|
|
],
|
|
declarations: [LoginPage, CAWizardComponent],
|
|
})
|
|
export class LoginPageModule {}
|