%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/templates/admin/auth/ |
Upload File : |
{**
* templates/admin/auth/sourceSettings.tpl
*
* Copyright (c) 2013-2019 Simon Fraser University
* Copyright (c) 2003-2019 John Willinsky
* Distributed under the GNU GPL v2. For full terms see the file docs/COPYING.
*
* Authentication source settings under site administration.
*
*}
{strip}
{assign var="pageTitle" value="admin.authSources"}
{include file="common/header.tpl"}
{/strip}
<br />
<div id="sourceSettings">
<form method="post" action="{url op="updateAuthSource" path=$authId}">
<table class="data" width="100%">
<tr valign="top">
<td width="20%" class="label">{fieldLabel name="title" key="common.title"}</td>
<td width="80%" class="value"><input type="text" id="title" name="title" value="{$title|escape}" size="40" maxlength="120" class="textField" /></td>
</tr>
<tr valign="top">
<td class="label" colspan="2">
<h4>{translate key="common.options"}</h4>
</td>
</tr>
<tr valign="top">
<td class="label" align="right">
<input type="checkbox" name="settings[syncProfiles]" id="syncProfiles" value="1"{if $settings.syncProfiles} checked="checked"{/if} />
</td>
<td class="value">
<label for="syncProfiles">{translate key="admin.auth.enableSyncProfiles"}</label>
</td>
</tr>
<tr valign="top">
<td class="label" align="right">
<input type="checkbox" name="settings[syncPasswords]" id="syncPasswords" value="1"{if $settings.syncPasswords} checked="checked"{/if} />
</td>
<td class="value">
<label for="syncPasswords">{translate key="admin.auth.enableSyncPasswords"}</label>
</td>
</tr>
<tr valign="top">
<td class="label" align="right">
<input type="checkbox" name="settings[createUsers]" id="createUsers" value="1"{if $settings.createUsers} checked="checked"{/if} />
</td>
<td class="value">
<label for="createUsers">{translate key="admin.auth.enableCreateUsers"}</label>
</td>
</tr>
</table>
{if $pluginTemplate}{include file=$pluginTemplate}{/if}
<p><input type="submit" value="{translate key="common.save"}" class="button defaultButton" /> <input type="button" value="{translate key="common.cancel"}" class="button" onclick="document.location.href='{url op="auth" escape=false}'" /></p>
</form>
</div>
{include file="common/footer.tpl"}