| Server IP : 127.0.1.1 / Your IP : 216.73.216.83 Web Server : Apache/2.4.58 (Ubuntu) System : Linux nepub 6.8.0-88-generic #89-Ubuntu SMP PREEMPT_DYNAMIC Sat Oct 11 01:02:46 UTC 2025 x86_64 User : root ( 0) PHP Version : 8.2.30 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : OFF Directory : /var/www/html/public_html/templates/frontend/pages/ |
Upload File : |
{**
* templates/frontend/pages/purchaseIndividualSubscription.tpl
*
* Copyright (c) 2013-2021 Simon Fraser University
* Copyright (c) 2003-2021 John Willinsky
* Distributed under the GNU GPL v3. For full terms see the file docs/COPYING.
*
* User purchase individual subscription form
*
*}
{include file="frontend/components/header.tpl" pageTitle="user.subscriptions.purchaseIndividualSubscription"}
<div class="pkp_page_content pkp_page_purchaseIndividualSubscription">
<form class="cmp_form purchase_subscription" method="post" id="subscriptionForm" action="{url op="payPurchaseSubscription" path="individual"|to_array:$subscriptionId}">
{csrf}
<fieldset>
<legend>
{translate key="payment.subscription.purchase"}
</legend>
<div class="fields">
<div class="subscription_type">
<label>
<span class="label">
{translate key="user.subscriptions.form.typeId"}
</span>
<select name="typeId" id="typeId">
{foreach name=types from=$subscriptionTypes key=thisTypeId item=subscriptionType}
<option value="{$thisTypeId|escape}"{if $typeId == $thisTypeId} selected{/if}>{$subscriptionType|escape}</option>
{/foreach}
</select>
</label>
</div>
<div class="subscription_membership">
<label>
<span class="label">
{translate key="user.subscriptions.form.membership"}
</span>
<input type="text" name="membership" id="membership" value="{$membership|escape}">
</label>
</div>
</div>
</fieldset>
<div class="buttons">
<button class="submit" type="submit">
{translate key="common.save"}
</button>
</div>
</form>
</div>
{include file="frontend/components/footer.tpl"}