diff options
Diffstat (limited to 'ufund-ui/src/app/components/funding-basket/funding-basket.component.html')
-rw-r--r-- | ufund-ui/src/app/components/funding-basket/funding-basket.component.html | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/ufund-ui/src/app/components/funding-basket/funding-basket.component.html b/ufund-ui/src/app/components/funding-basket/funding-basket.component.html index fa17b10..97375de 100644 --- a/ufund-ui/src/app/components/funding-basket/funding-basket.component.html +++ b/ufund-ui/src/app/components/funding-basket/funding-basket.component.html @@ -1,3 +1,14 @@ +<ng-template #overfundWarn> + <div class="overfundWarn"> + <h1>Overfund Notice</h1> + <p>One or more of the needs in your basket will be overfunded.</p> + <div> + <button (click) ="modalService.hideModal(); cancelModalFn!();">Cancel</button> + <button (click)="modalService.hideModal(); acceptModalFn!();">Overfund Needs</button> + </div> + </div> +</ng-template> + <div id="box"> @if ((authService.getCurrentUserSubject() | async)?.type === userType.HELPER) { <h1>Funding Basket</h1> |