| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889 |
- <?php if ($this->feed) { ?>
- <div class="post">
- <h1><?= _t('sub.feed.add') ?></h1>
- <?php if (!$this->load_ok) { ?>
- <p class="alert alert-error"><span class="alert-head"><?= _t('gen.short.damn') ?></span> <?= _t('feedback.sub.feed.internal_problem', _url('index', 'logs')) ?></p>
- <?php } ?>
- <form method="post" action="<?= _url('feed', 'add') ?>" autocomplete="off">
- <input type="hidden" name="_csrf" value="<?= FreshRSS_Auth::csrfToken() ?>" />
- <legend><?= _t('sub.feed.information') ?></legend>
- <?php if ($this->load_ok) { ?>
- <div class="form-group">
- <label class="group-name"><?= _t('sub.feed.title') ?></label>
- <div class="group-controls">
- <label><?= $this->feed->name() ?></label>
- </div>
- </div>
- <?php $desc = $this->feed->description(); if ($desc != '') { ?>
- <div class="form-group">
- <label class="group-name"><?= _t('sub.feed.description') ?></label>
- <div class="group-controls">
- <label><?= htmlspecialchars($desc, ENT_NOQUOTES, 'UTF-8') ?></label>
- </div>
- </div>
- <?php } ?>
- <div class="form-group">
- <label class="group-name"><?= _t('sub.feed.website') ?></label>
- <div class="group-controls">
- <?= $this->feed->website() ?>
- <a class="btn" target="_blank" rel="noreferrer" href="<?= $this->feed->website() ?>"><?= _i('link') ?></a>
- </div>
- </div>
- <?php } ?>
- <div class="form-group">
- <label class="group-name" for="url"><?= _t('sub.feed.url') ?></label>
- <div class="group-controls">
- <div class="stick">
- <input type="text" name="url_rss" id="url" class="extend" value="<?= $this->feed->url() ?>" />
- <a class="btn" target="_blank" rel="noreferrer" href="<?= $this->feed->url() ?>"><?= _i('link') ?></a>
- </div>
- <a class="btn" target="_blank" rel="noreferrer" href="https://validator.w3.org/feed/check.cgi?url=<?= $this->feed->url() ?>"><?= _t('sub.feed.validator') ?></a>
- </div>
- </div>
- <div class="form-group">
- <label class="group-name" for="category"><?= _t('sub.category') ?></label>
- <div class="group-controls">
- <select name="category" id="category">
- <?php foreach ($this->categories as $cat) { ?>
- <option value="<?= $cat->id() ?>"<?= $cat->id() == 1 ? ' selected="selected"' : '' ?>>
- <?= $cat->name() ?>
- </option>
- <?php } ?>
- <option value="nc"><?= _t('sub.category.new') ?></option>
- </select>
- <span aria-hidden="true">
- <input type="text" name="new_category[name]" id="new_category_name" autocomplete="off" placeholder="<?= _t('sub.category.new') ?>" />
- </span>
- </div>
- </div>
- <legend><?= _t('sub.feed.auth.http') ?></legend>
- <?php $auth = $this->feed->httpAuth(false); ?>
- <div class="form-group">
- <label class="group-name" for="http_user"><?= _t('sub.feed.auth.username') ?></label>
- <div class="group-controls">
- <input type="text" name="http_user" id="http_user" class="extend" value="<?= empty($auth['username']) ? ' ' : $auth['username'] ?>" autocomplete="off" />
- <p class="help"><?= _i('help') ?> <?= _t('sub.feed.auth.help') ?></p>
- </div>
- <label class="group-name" for="http_pass"><?= _t('sub.feed.auth.password') ?></label>
- <div class="group-controls">
- <input type="password" name="http_pass" id="http_pass" class="extend" value="<?= $auth['password'] ?>" autocomplete="new-password" />
- </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>
- </div>
- <?php } ?>
|