%PDF-1.7 GIF89;
| Server IP : 104.20.45.2 / Your IP : 172.16.20.3 Web Server : Apache/2.4.25 (Debian) System : Linux f64a392e70de 5.4.0-216-generic #236-Ubuntu SMP Fri Apr 11 19:53:21 UTC 2025 x86_64 User : application ( 1000) PHP Version : 5.6.40 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /app/plugins/themes/PalarJournal/templates/subscription/ |
Upload File : |
{**
* templates/subscription/userIndividualSubscriptionForm.tpl
*
* Copyright (c) 2003-2012 John Willinsky
* Distributed under the GNU GPL v2. For full terms see the file docs/COPYING.
*
* User purchase individual subscription form
*
*}
{strip}
{assign var="pageTitle" value="user.subscriptions.purchaseIndividualSubscription"}
{assign var="pageId" value="user.subscriptions.userIndividualSubscriptionForm"}
{include file="common/header.tpl"}
{/strip}
<br/>
{if $subscriptionId}
<form method="post" id="subscriptionForm" action="{url op="payPurchaseSubscription" path="individual"|to_array:$subscriptionId}">
{else}
<form method="post" id="subscriptionForm" action="{url op="payPurchaseSubscription" path="individual"}">
{/if}
{include file="common/formErrors.tpl"}
<table class="data" width="100%">
<tr valign="top">
<td width="20%" class="label">{fieldLabel name="typeId" required="true" key="user.subscriptions.form.typeId"}</td>
<td width="80%" class="value"><select name="typeId" id="typeId" class="selectMenu">
{foreach from=$subscriptionTypes item=subscriptionType}
<option value="{$subscriptionType->getTypeId()}"{if $typeId == $subscriptionType->getTypeId()} selected="selected"{/if}>{$subscriptionType->getSummaryString()|escape}</option>
{/foreach}
</select></td>
</tr>
<tr valign="top">
<td class="label">{fieldLabel name="membership" key="user.subscriptions.form.membership"}</td>
<td class="value">
<input type="text" name="membership" value="{$membership|escape}" id="membership" size="30" maxlength="40" class="textField" />
</td>
</tr>
<tr valign="top">
<td> </td>
<td><span class="instruct">{translate key="user.subscriptions.form.membershipInstructions"}</span></td>
</tr>
</table>
<p><input type="submit" value="{translate key="common.continue"}" class="button defaultButton" /> <input type="button" value="{translate key="common.cancel"}" class="button" onclick="document.location.href='{url page="user" op="subscriptions" escape=false}'" /></p>
</form>
<p><span class="formRequired">{translate key="common.requiredField"}</span></p>
{include file="common/footer.tpl"}