diff --git a/apps/client/src/app/pages/register/show-access-token-dialog/show-access-token-dialog.component.ts b/apps/client/src/app/pages/register/show-access-token-dialog/show-access-token-dialog.component.ts index 5aacbd457..ebe9983c0 100644 --- a/apps/client/src/app/pages/register/show-access-token-dialog/show-access-token-dialog.component.ts +++ b/apps/client/src/app/pages/register/show-access-token-dialog/show-access-token-dialog.component.ts @@ -9,11 +9,16 @@ import { MAT_DIALOG_DATA } from '@angular/material/dialog'; standalone: false }) export class ShowAccessTokenDialog { - public isAgreeButtonDisabled = true; + public isCreateAccountButtonDisabled = true; + public disclaimerChecked = false; public constructor(@Inject(MAT_DIALOG_DATA) public data: any) {} - public enableAgreeButton() { - this.isAgreeButtonDisabled = false; + public onChangeDislaimerChecked() { + this.disclaimerChecked = !this.disclaimerChecked; + } + + public enableCreateAccountButton() { + this.isCreateAccountButtonDisabled = false; } } diff --git a/apps/client/src/app/pages/register/show-access-token-dialog/show-access-token-dialog.html b/apps/client/src/app/pages/register/show-access-token-dialog/show-access-token-dialog.html index 0a6a2e5e3..9126dc359 100644 --- a/apps/client/src/app/pages/register/show-access-token-dialog/show-access-token-dialog.html +++ b/apps/client/src/app/pages/register/show-access-token-dialog/show-access-token-dialog.html @@ -5,44 +5,106 @@ }
- I agree to have stored my Security Token from above in a secure - place. If I lose it, I cannot get my account back. -
-