aboutsummaryrefslogtreecommitdiff
path: root/source/templates/feed.html
diff options
context:
space:
mode:
Diffstat (limited to 'source/templates/feed.html')
-rw-r--r--source/templates/feed.html6
1 files changed, 6 insertions, 0 deletions
diff --git a/source/templates/feed.html b/source/templates/feed.html
index 66d344db..f4a35e77 100644
--- a/source/templates/feed.html
+++ b/source/templates/feed.html
@@ -109,6 +109,12 @@ import utils
<input type="hidden" name="feed_id" value="${feed['feed_id']}" />
</form>
+ <form method=post action="/change_site_url/">
+ <input type="url" name="new_site_url" value="" placeholder="Enter a new URL for this site (then press Enter)." maxlength=2048 autocomplete="on" size="50" />
+ <input type="hidden" name="feed_id" value="${feed['feed_id']}" />
+ <input type="hidden" name="old_site_url" value="${feed['site_link']}" />
+ </form>
+
<form method=post action="/change_feed_url/">
<input type="url" name="new_feed_url" value="" placeholder="Enter a new URL in order to retrieve articles (then press Enter)." maxlength=2048 autocomplete="on" size="50" />
<input type="hidden" name="feed_id" value="${feed['feed_id']}" />
bgstack15