miniflux-legacy/app/templates/confirm_remove_feed.php

11 lines
419 B
PHP
Raw Normal View History

2013-03-17 23:16:25 +01:00
<div class="page-header">
2013-04-13 03:08:55 +02:00
<h2><?= t('Confirmation') ?></h2>
2013-03-17 23:16:25 +01:00
</div>
2016-08-25 03:17:58 +02:00
<p class="alert alert-info"><?= t('Do you really want to remove this subscription: "%s"?', Miniflux\Helper\escape($feed['title'])) ?></p>
2013-03-17 23:16:25 +01:00
<div class="form-actions">
<a href="?action=remove-feed&amp;feed_id=<?= $feed['id'] ?>" class="btn btn-red"><?= t('Remove') ?></a>
2013-04-13 03:08:55 +02:00
<?= t('or') ?> <a href="?action=feeds"><?= t('cancel') ?></a>
2016-08-25 03:17:58 +02:00
</div>