summaryrefslogtreecommitdiffstats
path: root/src/pybind/mgr/dashboard/frontend/src/app/core/layouts/login-layout/login-layout.component.ts
blob: 69d591cd17b2becb6a8713972ae03291c156fe7d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
import { Component } from '@angular/core';

@Component({
  selector: 'cd-login-layout',
  templateUrl: './login-layout.component.html',
  styleUrls: ['./login-layout.component.scss']
})
export class LoginLayoutComponent {
  docItems: any[] = [
    { section: 'help', text: $localize`Help` },
    { section: 'security', text: $localize`Security` },
    { section: 'trademarks', text: $localize`Trademarks` }
  ];
}