whmcs-accounting/modules/addons/addonmodule/templates/publicpage.tpl
2017-01-03 09:14:27 +00:00

44 lines
1.1 KiB
Smarty

<h2>Public Client Area Sample Page</h2>
<p>This is an example of a public client area page that does not require a login to view.</p>
<p>All the template variables you define along with some <a href="https://developers.whmcs.com/themes/variables/" target="_blank">additional standard template variables</a> are available within this template.<br>You can use the Smarty <em>{ldelim}debug{rdelim}</em> function call to see a full list.</p>
<hr>
<div class="row">
<div class="col-sm-3">
Module Link
</div>
<div class="col-sm-7">
{$modulelink}
</div>
</div>
<div class="row">
<div class="col-sm-3">
Config Text Field Value
</div>
<div class="col-sm-7">
{$configTextField}
</div>
</div>
<div class="row">
<div class="col-sm-3">
Custom Variable
</div>
<div class="col-sm-7">
{$customVariable}
</div>
</div>
<hr>
<p>
<a href="{$modulelink}&action=secret" class="btn btn-default">
<i class="fa fa-lock"></i>
Go to page that requires authentication
</a>
</p>