{** * templates/user/contactForm.tpl * * Copyright (c) 2014-2018 Simon Fraser University * Copyright (c) 2003-2018 John Willinsky * Distributed under the GNU GPL v2. For full terms see the file docs/COPYING. * * User profile form. *} {* Help Link *} {help file="user-profile.md" class="pkp_help_tab"}
{csrf} {include file="controllers/notification/inPlaceNotification.tpl" notificationId="contactFormNotification"} {fbvFormSection} {fbvElement type="text" label="user.email" id="email" value=$email size=$fbvStyles.size.MEDIUM required=true} {fbvElement type="textarea" label="user.signature" multilingual="true" name="signature" id="signature" value=$signature rich=true size=$fbvStyles.size.MEDIUM} {fbvElement type="text" label="user.phone" name="phone" id="phone" value=$phone maxlength="24" size=$fbvStyles.size.SMALL} {fbvElement type="text" label="user.affiliation" multilingual="true" name="affiliation" id="affiliation" value=$affiliation size=$fbvStyles.size.MEDIUM} {/fbvFormSection} {fbvFormSection} {fbvElement type="textarea" label="common.mailingAddress" name="mailingAddress" id="mailingAddress" rich=true value=$mailingAddress size=$fbvStyles.size.MEDIUM} {fbvElement type="select" label="common.country" name="country" id="country" required=true defaultLabel="" defaultValue="" from=$countries selected=$country translate=false size=$fbvStyles.size.MEDIUM} {/fbvFormSection} {if count($availableLocales) > 1} {fbvFormSection title="user.workingLanguages" list=true} {foreach from=$availableLocales key=localeKey item=localeName} {if $userLocales && in_array($localeKey, $userLocales)} {assign var="checked" value=true} {else} {assign var="checked" value=false} {/if} {fbvElement type="checkbox" name="userLocales[]" id="userLocales-$localeKey" value=$localeKey checked=$checked label=$localeName translate=false} {/foreach} {/fbvFormSection} {/if} {fbvFormButtons hideCancel=true submitText="common.save"}

{capture assign="privacyUrl"}{url router=$smarty.const.ROUTE_PAGE page="about" op="privacy"}{/capture} {translate key="user.privacyLink" privacyUrl=$privacyUrl}

{translate key="common.requiredField"}