-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Limited the senarios when the confirmation text will appear in suppor…
…t of #391.
- Loading branch information
1 parent
7af980a
commit afb518c
Showing
1 changed file
with
6 additions
and
26 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -373,32 +373,12 @@ | |
<div class="alert alert-success" role="alert"> | ||
Your order has been submitted on @orderDate You can <a href="https://acceleratenetworks.com/cart/order/@Model?.Order?.OrderId">review it here</a>. | ||
</div> | ||
<div class="alert alert-info" role="alert"> | ||
A confirmation email will be sent to @Model?.Order?.Email shortly. | ||
</div> | ||
// Disabled because these always bump you into the login screen in invoice ninja 5. | ||
//if (!string.IsNullOrWhiteSpace(Model?.Order?.UpfrontInvoiceLink)) | ||
//{ | ||
// <div class="pricing-header mx-auto pb-3 text-center"> | ||
// <h1 class="display-4">Upfront</h1> | ||
// </div> | ||
// <!-- 4:3 aspect ratio --> | ||
// <div class="embed-responsive embed-responsive-4by3"> | ||
// <iframe class="embed-responsive-item" src="@Model?.Order?.UpfrontInvoiceLink"></iframe> | ||
// </div> | ||
// <br /> | ||
//} | ||
//if (!string.IsNullOrWhiteSpace(Model?.Order?.ReoccuringInvoiceLink)) | ||
//{ | ||
// <div class="pricing-header mx-auto pb-3 text-center"> | ||
// <h1 class="display-4">Monthly</h1> | ||
// </div> | ||
// <!-- 4:3 aspect ratio --> | ||
// <div class="embed-responsive embed-responsive-4by3"> | ||
// <iframe class="embed-responsive-item" src="@Model?.Order?.ReoccuringInvoiceLink"></iframe> | ||
// </div> | ||
// <br /> | ||
//} | ||
if (Model is not null && !Model.Order.NoEmail) | ||
{ | ||
<div class="alert alert-info" role="alert"> | ||
A confirmation email will be sent to @Model?.Order?.Email shortly. | ||
</div> | ||
} | ||
<div class="jumbotron"> | ||
<h1 class="display-4">Need help? Contact us!</h1> | ||
<p class="lead">Give us a ring at 206-858-8757 (texting is welcome) or <a href="mailto:[email protected]?Subject=Help%20me%20with%20?" target="_top">email us</a>.</p> | ||
|