HEX
Server: Apache/2.4.41 (Ubuntu)
System: Linux ip-172-31-42-149 5.15.0-1084-aws #91~20.04.1-Ubuntu SMP Fri May 2 07:00:04 UTC 2025 aarch64
User: ubuntu (1000)
PHP: 7.4.33
Disabled: pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare,
Upload Files
File: /var/www/vhost/disk-apps/pwa.sports-crowd.com/src/app/pages/academy-period/academy-period.page.html
<ion-header>
  <ion-toolbar>
    <ion-title class="responsive-text">{{ 'PAYMENT_PERIOD_TITLE' | translate }}</ion-title>
    <ion-buttons slot="end">
      <ion-button (click)="cancel(false)" strong color="light">{{ 'all.close' | translate }}</ion-button>
    </ion-buttons>
  </ion-toolbar>
</ion-header>

<ion-content>
  <form #formPeriod="ngForm" (ngSubmit)="createPaymentSchedule()">
    <ion-list>
      <ion-item class="inputBorderRadius ion-margin-bottom" lines="none" *ngIf="periods.length">
        <ion-label position="stacked" style="margin-bottom: 10px;">
          {{ 'PAYMENT_PERIOD' | translate }}</ion-label>
        <ion-select interface="popover" placeholder="{{ 'TEXT_OK_SELECT' | translate }}"
          class="ion-text-center placeholder-select" name="period" okText="{{ 'TEXT_OK_SELECT' | translate }}"
          cancelText="{{ 'TEXT_CANCEL_SELECT' | translate }}" required [(ngModel)]="period">
          <ion-select-option *ngFor="let item of periods" [value]="item.id">
            <p *ngIf="item.discount">
              {{ item.name + ' (' + item.discount + '% de Descuento)'}}
            </p>
            <p *ngIf="!item.discount">
              {{ item.name }}
            </p>
          </ion-select-option>
        </ion-select>
      </ion-item>
    </ion-list>

    <ion-button type="submit" color="primary" shape="round" expand="block" fill="solid" class="ion-margin"
      *ngIf="period && (month || !showMonthSelect)">
      {{ 'TUTORIAL_CONTINUE_BUTTON' | translate }}
    </ion-button>
  </form>

</ion-content>