sharing.phtml 946 B

12345678910111213141516171819202122
  1. <?php $this->partial ('aside_configure'); ?>
  2. <div class="post">
  3. <a href="<?php echo _url ('index', 'index'); ?>"><?php echo Translate::t ('back_to_rss_feeds'); ?></a>
  4. <form method="post" action="<?php echo _url ('configure', 'sharing'); ?>">
  5. <legend><?php echo Translate::t ('sharing'); ?></legend>
  6. <div class="form-group">
  7. <label class="group-name" for="shaarli"><?php echo Translate::t ('your_shaarli'); ?></label>
  8. <div class="group-controls">
  9. <input type="url" id="shaarli" name="shaarli" value="<?php echo $this->conf->urlShaarli (); ?>" placeholder="<?php echo Translate::t ('blank_to_disable'); ?>" size="64" />
  10. </div>
  11. </div>
  12. <div class="form-group form-actions">
  13. <div class="group-controls">
  14. <button type="submit" class="btn btn-important"><?php echo Translate::t ('save'); ?></button>
  15. <button type="reset" class="btn"><?php echo Translate::t ('cancel'); ?></button>
  16. </div>
  17. </div>
  18. </form>
  19. </div>