Skip to content

Commit

Permalink
UI Fixes (#444)
Browse files Browse the repository at this point in the history
  • Loading branch information
Christopher-walsh22 authored Aug 26, 2024
1 parent 233a413 commit 3ebc5f8
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 13 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,7 @@ <h5 class="mb-4">Safety information</h5>
</div>
</div>
</div>
</div>

<!-- Vistor guidelines -->
<div class="mb-5">
Expand Down
27 changes: 14 additions & 13 deletions src/app/registration/success/success.component.html
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ <h1>Success! Your reservation is complete.</h1>
<div class="row">
<div class="col-md-12 col-lg-6 left-col mb-4">
<div class="mt-4 mt-lg-4">
<p class="mb-1">We hope you enjoy your visit,</p>
<p class="mb-1">We hope you enjoy your visit, </p>
<p>
<strong>
{{ regData?.firstName ? regData.firstName : '-' }} {{ regData?.lastName ? regData.lastName : '-' }}
Expand Down Expand Up @@ -68,26 +68,28 @@ <h1>Success! Your reservation is complete.</h1>
<button
id="qrCodePrintButton"
type="button"
class="btn btn-primary"
class="btn btn-primary mb-3"
(click)="print()"
>Print</button>
</div>
</div>

<!--Load lists for specific facility-->
<div class="col-mg-12 col-lg-6 right-col">
<app-joffreLakes *ngIf="isJoffreLakes" [regData]="regData"></app-joffreLakes>
<app-garibaldiConfirmation *ngIf="isGaribaldi" [regData]="regData"></app-garibaldiConfirmation>

<!-- After lists for -->
<div class="d-lg-none mt-4">
<button
type="button"
class="btn btn-primary"
class="btn btn-primary mb-3"
(click)="print()"
>Print</button>
</div>

<!--Load lists for specific facility-->
<div class="col-mg-12 col-lg-6 right-col">
<app-joffreLakes *ngIf="isJoffreLakes" [regData]="regData"></app-joffreLakes>
<app-garibaldiConfirmation *ngIf="isGaribaldi" [regData]="regData"></app-garibaldiConfirmation>

<!-- After lists for -->


<div class="mt-5">
<h5 class="mb-3">Next steps</h5>
<ol>
Expand Down Expand Up @@ -131,8 +133,7 @@ <h5 class="mb-3">Next steps</h5>
<div class="row">
<div class="col-md-12 col-lg-6 left-col mb-4">
<div class="mt-4 mt-lg-4 d-flex">
<p class="mb-1 align-content-center">We hope you enjoy your visit,</p>
<p>
<p class="mb-1 align-content-center">We hope you enjoy your visit, &nbsp;
<strong>
{{ regData?.firstName ? regData.firstName : '-' }} {{ regData?.lastName ? regData.lastName : '-' }}
</strong>
Expand Down Expand Up @@ -187,7 +188,7 @@ <h5 class="mb-3">Next steps</h5>
<button
id="qrCodePrintButton"
type="button"
class="btn btn-primary"
class="btn btn-primary mb-3"
(click)="print()"
>Print</button>
</div>
Expand All @@ -201,7 +202,7 @@ <h5 class="mb-3">Next steps</h5>
<div class="d-lg-none mt-4">
<button
type="button"
class="btn btn-primary"
class="btn btn-primary mb-3"
(click)="print()"
>Print</button>
</div>
Expand Down

0 comments on commit 3ebc5f8

Please sign in to comment.