mirror of
https://github.com/FreshRSS/FreshRSS.git
synced 2026-02-13 15:01:12 -05:00
Completes the following TODO https://github.com/FreshRSS/FreshRSS/issues/7923:
de624dc8ce/app/Controllers/authController.php (L105)
Extension PR: https://github.com/FreshRSS/Extensions/pull/364
https://github.com/FreshRSS/Extensions/tree/main/xExtension-UnsafeAutologin
68 lines
2.9 KiB
PHTML
68 lines
2.9 KiB
PHTML
<?php
|
|
declare(strict_types=1);
|
|
/** @var FreshRSS_View $this */
|
|
$this->partial('aside_configure');
|
|
?>
|
|
<main class="post">
|
|
<h1><?= _t('gen.menu.authentication') ?></h1>
|
|
<form method="post" action="<?= _url('auth', 'index') ?>" data-auto-leave-validation="1">
|
|
<input type="hidden" name="_csrf" value="<?= FreshRSS_Auth::csrfToken() ?>" />
|
|
|
|
<div class="form-group">
|
|
<label class="group-name" for="auth_type"><?= _t('admin.auth.type') ?></label>
|
|
<div class="group-controls">
|
|
<select id="auth_type" name="auth_type" required="required">
|
|
<?php if (!in_array(FreshRSS_Context::systemConf()->auth_type, ['form', 'http_auth', 'none'], true)) { ?>
|
|
<option selected="selected"></option>
|
|
<?php } ?>
|
|
<option value="form"<?= FreshRSS_Context::systemConf()->auth_type === 'form' ? ' selected="selected"' : '',
|
|
FreshRSS_password_Util::cryptAvailable() ? '' : ' disabled="disabled"' ?>><?= _t('admin.auth.form') ?></option>
|
|
<option value="http_auth"<?= FreshRSS_Context::systemConf()->auth_type === 'http_auth' ? ' selected="selected"' : '' ?>>
|
|
<?= _t('admin.auth.http') ?> (REMOTE_USER = '<?= FreshRSS_http_Util::httpAuthUser() ?>')</option>
|
|
<option value="none"<?= FreshRSS_Context::systemConf()->auth_type === 'none' ? ' selected="selected"' : '' ?>><?= _t('admin.auth.none') ?></option>
|
|
</select>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="form-group">
|
|
<div class="group-controls">
|
|
<label class="checkbox" for="anon_access">
|
|
<input type="checkbox" name="anon_access" id="anon_access" value="1"<?=
|
|
FreshRSS_Context::systemConf()->allow_anonymous ? ' checked="checked"' : '',
|
|
FreshRSS_Auth::accessNeedsAction() ? '' : ' disabled="disabled"' ?> />
|
|
<?= _t('admin.auth.allow_anonymous', FreshRSS_Context::systemConf()->default_user) ?>
|
|
</label>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="form-group">
|
|
<div class="group-controls">
|
|
<label class="checkbox" for="anon_refresh">
|
|
<input type="checkbox" name="anon_refresh" id="anon_refresh" value="1"<?=
|
|
FreshRSS_Context::systemConf()->allow_anonymous_refresh ? ' checked="checked"' : '',
|
|
FreshRSS_Auth::accessNeedsAction() ? '' : ' disabled="disabled"' ?> />
|
|
<?= _t('admin.auth.allow_anonymous_refresh') ?>
|
|
</label>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="form-group">
|
|
<div class="group-controls">
|
|
<label class="checkbox" for="api_enabled">
|
|
<input type="checkbox" name="api_enabled" id="api_enabled" value="1"<?=
|
|
FreshRSS_Context::systemConf()->api_enabled ? ' checked="checked"' : '',
|
|
FreshRSS_Auth::accessNeedsLogin() ? '' : ' disabled="disabled"' ?> />
|
|
<?= _t('admin.auth.api_enabled') ?>
|
|
</label>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="form-group form-actions">
|
|
<div class="group-controls">
|
|
<button type="submit" class="btn btn-important"><?= _t('gen.action.submit') ?></button>
|
|
<button type="reset" class="btn"><?= _t('gen.action.cancel') ?></button>
|
|
</div>
|
|
</div>
|
|
</form>
|
|
</main>
|