aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/+signup/shared/signup-success-before-email.component.ts
blob: d72462340b0e4c0e1bfedc4c5b2fec55ae1156ab (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
import { Component, Input } from '@angular/core'

@Component({
  selector: 'my-signup-success-before-email',
  templateUrl: './signup-success-before-email.component.html',
  styleUrls: [ './signup-success.component.scss' ]
})
export class SignupSuccessBeforeEmailComponent {
  @Input() requiresApproval: boolean
  @Input() requiresEmailVerification: boolean
  @Input() instanceName: string
}