Introduces ReservationSuccess, ReservationFailed, PurchaseSuccess, PurchaseFailed, TicketSmall, and TicketList components for handling and displaying reservation and purchase outcomes. Updates order flow logic in OrderComponent to support reservation and purchase states, disables/enables form inputs during submission, and integrates new UI feedback. Also adds angularx-qrcode dependency and updates @infinimotion/model-frontend version.
12 lines
256 B
TypeScript
12 lines
256 B
TypeScript
import { Component } from '@angular/core';
|
|
|
|
@Component({
|
|
selector: 'app-purchase-failed',
|
|
standalone: false,
|
|
templateUrl: './purchase-failed.component.html',
|
|
styleUrl: './purchase-failed.component.css',
|
|
})
|
|
export class PurchaseFailedComponent {
|
|
|
|
}
|