aboutsummaryrefslogblamecommitdiffhomepage
path: root/client/src/app/+signup/+register/steps/register-step-terms.component.html
blob: cbfb325184a5279c69e09484b8d5a906013693db (plain) (tree)
1
2
3
4
5
6
7
8
                                     
                          

                                                                    
                           
                                                            
                                                                                         
                                                                                                                                                                      




                           
                                                                                 

        
<form role="form" [formGroup]="form">
  <div class="form-group">
    <my-peertube-checkbox inputName="terms" formControlName="terms">
      <ng-template ptTemplate="label">
        <ng-container i18n>
          I am at least {{ minimumAge }} years old and agree
          to the <a class="link-orange" (click)="onTermsClick($event)" href='#'>Terms</a>
          <ng-container *ngIf="hasCodeOfConduct"> and to the <a class="link-orange" (click)="onCodeOfConductClick($event)" href='#'>Code of Conduct</a></ng-container>
          of this instance
        </ng-container>
      </ng-template>
    </my-peertube-checkbox>

    <div *ngIf="formErrors.terms" class="form-error">{{ formErrors.terms }}</div>
  </div>
</form>