xExtension-wallabag/configure.phtml

59 lines
3 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_client_id"><?php echo _t('ext.wallabag.client_id'); ?></label>
<div class="group-controls">
<input type="text" name="wallabag_client_id" id="wallabag_client_id" value="<?php echo FreshRSS_Context::$user_conf->wallabag_client_id; ?>">
</div>
</div>
<div class="form-group">
<label class="group-name" for="wallabag_client_secret"><?php echo _t('ext.wallabag.client_secret'); ?></label>
<div class="group-controls">
<input type="password" name="wallabag_client_secret" id="wallabag_client_secret" value="<?php echo FreshRSS_Context::$user_conf->wallabag_client_secret; ?>">
</div>
</div>
<div class="form-group">
<label class="group-name" for="wallabag_username"><?php echo _t('ext.wallabag.username'); ?></label>
<div class="group-controls">
<input type="text" name="wallabag_username" id="wallabag_username" value="<?php echo FreshRSS_Context::$user_conf->wallabag_username; ?>">
</div>
</div>
<div class="form-group">
<label class="group-name" for="wallabag_password"><?php echo _t('ext.wallabag.password'); ?></label>
<div class="group-controls">
<input type="password" name="wallabag_password" id="wallabag_password" value="<?php echo FreshRSS_Context::$user_conf->wallabag_password; ?>">
</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>