-
Notifications
You must be signed in to change notification settings - Fork 171
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Show license key information on the legal page
- Loading branch information
Showing
2 changed files
with
20 additions
and
2 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
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 |
---|---|---|
|
@@ -21,11 +21,28 @@ | |
<a href="mailto:[email protected]">[email protected]</a><br> | ||
<a href="https://postalsys.com/">https://postalsys.com</a> | ||
</address> | ||
|
||
|
||
|
||
</div> | ||
|
||
<ul class="list-group list-group-flush"> | ||
|
||
|
||
<ul class="list-group list-group-flush"> | ||
|
||
<li class="list-group-item"> | ||
<strong> | ||
{{#if licenseInfo.details.key}} | ||
{{#if licenseInfo.details.trial}} | ||
This copy of EmailEngine is running on a trial license. | ||
{{else}} | ||
This copy of EmailEngine is licensed to <em>{{licenseInfo.details.licensedTo}}</em>. | ||
{{/if}} | ||
{{else}} | ||
License key not set for this copy of EmailEngine. | ||
{{/if}} | ||
</strong> | ||
</li> | ||
|
||
<li class="list-group-item"> | ||
<a href="/license.html" target="_blank"> | ||
|