xExtension-wallabag/configure.phtml
2023-11-10 15:34:18 +01:00

41 lines
2 KiB
PHTML

<form action="<?php echo _url('extension', 'configure', 'e', urlencode($this->getName())); ?>" method="post">
<input type="hidden" name="_csrf" value="<?php echo FreshRSS_Auth::csrfToken(); ?>" />
<div class="form-group">
<label class="group-name" for="wallabag_endpoint"><?php echo _t('ext.wallabag.endpoint'); ?></label>
<div class="group-controls">
<input type="url" name="wallabag_endpoint" id="wallabag_endpoint" value="<?php echo FreshRSS_Context::$user_conf->wallabag_endpoint; ?>">
</div>
</div>
<div class="form-group">
<label class="group-name" for="wallabag_token"><?php echo _t('ext.wallabag.token'); ?></label>
<div class="group-controls">
<input type="password" name="wallabag_token" id="wallabag_token" value="<?php echo FreshRSS_Context::$user_conf->wallabag_token; ?>">
</div>
</div>
<div class="form-group">
<label class="group-name" for="wallabag_feeds"><?php echo _t('ext.wallabag.feeds'); ?></label>
<div class="group-controls">
<input type="text" name="wallabag_feeds" id="wallabag_feeds" value="<?php echo FreshRSS_Context::$user_conf->wallabag_feeds; ?>">
</div>
</div>
<div class="form-group">
<label class="group-name" for="wallabag_use_tags"><?php echo _t('ext.wallabag.use_tags'); ?></label>
<div class="group-controls">
<input type="checkbox" name="wallabag_use_tags" id="wallabag_use_tags" value="1" <?php echo (FreshRSS_Context::$user_conf->wallabag_use_tags ? 'checked' : ''); ?>>
</div>
</div>
<div class="form-group">
<label class="group-name" for="wallabag_add_tags"><?php echo _t('ext.wallabag.add_tags'); ?></label>
<div class="group-controls">
<input type="text" name="wallabag_add_tags" id="wallabag_add_tags" value="<?php echo FreshRSS_Context::$user_conf->wallabag_add_tags; ?>">
</div>
</div>
<div class="form-group form-actions">
<div class="group-controls">
<button type="submit" class="btn btn-important"><?php echo _t('gen.action.submit'); ?></button>
<button type="reset" class="btn"><?php echo _t('gen.action.cancel'); ?></button>
</div>
</div>
</form>