integrations.html 24 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433
  1. {{ define "title"}}{{ t "page.integrations.title" }}{{ end }}
  2. {{ define "content"}}
  3. <section class="page-header">
  4. <h1>{{ t "page.integrations.title" }}</h1>
  5. {{ template "settings_menu" dict "user" .user }}
  6. </section>
  7. <form method="post" autocomplete="off" action="{{ route "updateIntegration" }}" class="integration-form">
  8. <input type="hidden" name="csrf" value="{{ .csrf }}">
  9. {{ if .errorMessage }}
  10. <div class="alert alert-error">{{ .errorMessage }}</div>
  11. {{ end }}
  12. <details {{ if .form.AppriseEnabled }}open{{ end }}>
  13. <summary>Apprise</summary>
  14. <div class="form-section">
  15. <label>
  16. <input type="checkbox" name="apprise_enabled" value="1" {{ if .form.AppriseEnabled }}checked{{ end }}> {{ t "form.integration.apprise_activate" }}
  17. </label>
  18. <label for="form-apprise-url">{{ t "form.integration.apprise_url" }}</label>
  19. <input type="url" name="apprise_url" id="form-apprise-url" value="{{ .form.AppriseURL }}" placeholder="http://apprise:8080" spellcheck="false">
  20. <label for="form-apprise-services-url">{{ t "form.integration.apprise_services_url" }}
  21. <a href="https://github.com/caronc/apprise/wiki" target="_blank">
  22. {{ icon "external-link" }}
  23. </a>
  24. </label>
  25. <input type="text" name="apprise_services_url" id="form-apprise-services-urls" value="{{ .form.AppriseServicesURL }}" placeholder="tgram://<token>/<chat_id>/,matrix://" spellcheck="false">
  26. <div class="buttons">
  27. <button type="submit" class="button button-primary" data-label-loading="{{ t "form.submit.saving" }}">{{ t "action.update" }}</button>
  28. </div>
  29. </div>
  30. </details>
  31. <details {{ if .form.EspialEnabled }}open{{ end }}>
  32. <summary>Espial</summary>
  33. <div class="form-section">
  34. <label>
  35. <input type="checkbox" name="espial_enabled" value="1" {{ if .form.EspialEnabled }}checked{{ end }}> {{ t "form.integration.espial_activate" }}
  36. </label>
  37. <label for="form-espial-url">{{ t "form.integration.espial_endpoint" }}</label>
  38. <input type="url" name="espial_url" id="form-espial-url" value="{{ .form.EspialURL }}" placeholder="https://esp.ae8.org" spellcheck="false">
  39. <label for="form-espial-api-key">{{ t "form.integration.espial_api_key" }}</label>
  40. <input type="text" name="espial_api_key" id="form-espial-api-key" value="{{ .form.EspialAPIKey }}" spellcheck="false">
  41. <label for="form-espial-tags">{{ t "form.integration.espial_tags" }}</label>
  42. <input type="text" name="espial_tags" id="form-espial-tags" value="{{ .form.EspialTags }}" spellcheck="false">
  43. <div class="buttons">
  44. <button type="submit" class="button button-primary" data-label-loading="{{ t "form.submit.saving" }}">{{ t "action.update" }}</button>
  45. </div>
  46. </div>
  47. </details>
  48. <details {{ if .form.FeverEnabled }}open{{ end }}>
  49. <summary>Fever</summary>
  50. <div class="form-section">
  51. <label>
  52. <input type="checkbox" name="fever_enabled" value="1" {{ if .form.FeverEnabled }}checked{{ end }}> {{ t "form.integration.fever_activate" }}
  53. </label>
  54. <label for="form-fever-username">{{ t "form.integration.fever_username" }}</label>
  55. <input type="text" name="fever_username" id="form-fever-username" value="{{ .form.FeverUsername }}" autocomplete="username" spellcheck="false">
  56. <label for="form-fever-password">{{ t "form.integration.fever_password" }}</label>
  57. <input type="password" name="fever_password" id="form-fever-password" value="{{ .form.FeverPassword }}" autocomplete="new-password">
  58. <p>{{ t "form.integration.fever_endpoint" }} <strong>{{ rootURL }}{{ route "feverEndpoint" }}</strong></p>
  59. <div class="buttons">
  60. <button type="submit" class="button button-primary" data-label-loading="{{ t "form.submit.saving" }}">{{ t "action.update" }}</button>
  61. </div>
  62. </div>
  63. </details>
  64. <details {{ if .form.GoogleReaderEnabled }}open{{ end }}>
  65. <summary>Google Reader</summary>
  66. <div class="form-section">
  67. <label>
  68. <input type="checkbox" name="googlereader_enabled" value="1" {{ if .form.GoogleReaderEnabled }}checked{{ end }}> {{ t "form.integration.googlereader_activate" }}
  69. </label>
  70. <label for="form-googlereader-username">{{ t "form.integration.googlereader_username" }}</label>
  71. <input type="text" name="googlereader_username" id="form-googlereader-username" value="{{ .form.GoogleReaderUsername }}" autocomplete="username" spellcheck="false">
  72. <label for="form-googlereader-password">{{ t "form.integration.googlereader_password" }}</label>
  73. <input type="password" name="googlereader_password" id="form-googlereader-password" value="{{ .form.GoogleReaderPassword }}" autocomplete="new-password">
  74. <p>{{ t "form.integration.googlereader_endpoint" }} <strong>{{ rootURL }}{{ route "login" }}</strong></p>
  75. <div class="buttons">
  76. <button type="submit" class="button button-primary" data-label-loading="{{ t "form.submit.saving" }}">{{ t "action.update" }}</button>
  77. </div>
  78. </div>
  79. </details>
  80. <details {{ if .form.InstapaperEnabled }}open{{ end }}>
  81. <summary>Instapaper</summary>
  82. <div class="form-section">
  83. <label>
  84. <input type="checkbox" name="instapaper_enabled" value="1" {{ if .form.InstapaperEnabled }}checked{{ end }}> {{ t "form.integration.instapaper_activate" }}
  85. </label>
  86. <label for="form-instapaper-username">{{ t "form.integration.instapaper_username" }}</label>
  87. <input type="text" name="instapaper_username" id="form-instapaper-username" value="{{ .form.InstapaperUsername }}" spellcheck="false">
  88. <label for="form-instapaper-password">{{ t "form.integration.instapaper_password" }}</label>
  89. <input type="password" name="instapaper_password" id="form-instapaper-password" value="{{ .form.InstapaperPassword }}" autocomplete="new-password">
  90. <div class="buttons">
  91. <button type="submit" class="button button-primary" data-label-loading="{{ t "form.submit.saving" }}">{{ t "action.update" }}</button>
  92. </div>
  93. </div>
  94. </details>
  95. <details {{ if .form.LinkdingEnabled }}open{{ end }}>
  96. <summary>Linkding</summary>
  97. <div class="form-section">
  98. <label>
  99. <input type="checkbox" name="linkding_enabled" value="1" {{ if .form.LinkdingEnabled }}checked{{ end }}> {{ t "form.integration.linkding_activate" }}
  100. </label>
  101. <label for="form-linkding-url">{{ t "form.integration.linkding_endpoint" }}</label>
  102. <input type="url" name="linkding_url" id="form-linkding-url" value="{{ .form.LinkdingURL }}" placeholder="https://linkding.com" spellcheck="false">
  103. <label for="form-linkding-api-key">{{ t "form.integration.linkding_api_key" }}</label>
  104. <input type="text" name="linkding_api_key" id="form-linkding-api-key" value="{{ .form.LinkdingAPIKey }}" spellcheck="false">
  105. <label for="form-linkding-tags">{{ t "form.integration.linkding_tags" }}</label>
  106. <input type="text" name="linkding_tags" id="form-linkding-tags" value="{{ .form.LinkdingTags }}" spellcheck="false">
  107. <label>
  108. <input type="checkbox" name="linkding_mark_as_unread" value="1" {{ if .form.LinkdingMarkAsUnread }}checked{{ end }}> {{ t "form.integration.linkding_bookmark" }}
  109. </label>
  110. <div class="buttons">
  111. <button type="submit" class="button button-primary" data-label-loading="{{ t "form.submit.saving" }}">{{ t "action.update" }}</button>
  112. </div>
  113. </div>
  114. </details>
  115. <details {{ if .form.MatrixBotEnabled }}open{{ end }}>
  116. <summary>Matrix Bot</summary>
  117. <div class="form-section">
  118. <label>
  119. <input type="checkbox" name="matrix_bot_enabled" value="1" {{ if .form.MatrixBotEnabled }}checked{{ end }}> {{ t "form.integration.matrix_bot_activate" }}
  120. </label>
  121. <label for="form-matrix-bot-user">{{ t "form.integration.matrix_bot_user" }}</label>
  122. <input type="text" name="matrix_bot_user" id="form-matrix-bot-user" value="{{ .form.MatrixBotUser }}" spellcheck="false">
  123. <label for="form-matrix-chat-password">{{ t "form.integration.matrix_bot_password" }}</label>
  124. <input type="password" name="matrix_bot_password" id="form-matrix-password" value="{{ .form.MatrixBotPassword }}" spellcheck="false">
  125. <label for="form-matrix-url">{{ t "form.integration.matrix_bot_url" }}</label>
  126. <input type="url" name="matrix_bot_url" id="form-matrix-url" value="{{ .form.MatrixBotURL }}" spellcheck="false">
  127. <label for="form-matrix-chat-id">{{ t "form.integration.matrix_bot_chat_id" }}</label>
  128. <input type="text" name="matrix_bot_chat_id" id="form-matrix-chat-id" value="{{ .form.MatrixBotChatID }}" spellcheck="false">
  129. <div class="buttons">
  130. <button type="submit" class="button button-primary" data-label-loading="{{ t "form.submit.saving" }}">{{ t "action.update" }}</button>
  131. </div>
  132. </div>
  133. </details>
  134. <details {{ if .form.NotionEnabled }}open{{ end }}>
  135. <summary>Notion</summary>
  136. <div class="form-section">
  137. <label>
  138. <input type="checkbox" name="notion_enabled" value="1" {{ if .form.NotionEnabled }}checked{{ end }}> {{ t "form.integration.notion_activate" }}
  139. </label>
  140. <label for="form-notion-token">{{ t "form.integration.notion_token" }}</label>
  141. <input type="password" name="notion_token" id="form-notion-token" value="{{ .form.NotionToken }}" spellcheck="false">
  142. <label for="form-notion-page-id">{{ t "form.integration.notion_page_id" }}</label>
  143. <input type="text" name="notion_page_id" id="form-notion-page-id" value="{{ .form.NotionPageID }}" spellcheck="false">
  144. <div class="buttons">
  145. <button type="submit" class="button button-primary" data-label-loading="{{ t "form.submit.saving" }}">{{ t "action.update" }}</button>
  146. </div>
  147. </div>
  148. </details>
  149. <details {{ if .form.NunuxKeeperEnabled }}open{{ end }}>
  150. <summary>Nunux Keeper</summary>
  151. <div class="form-section">
  152. <label>
  153. <input type="checkbox" name="nunux_keeper_enabled" value="1" {{ if .form.NunuxKeeperEnabled }}checked{{ end }}> {{ t "form.integration.nunux_keeper_activate" }}
  154. </label>
  155. <label for="form-nunux-keeper-url">{{ t "form.integration.nunux_keeper_endpoint" }}</label>
  156. <input type="url" name="nunux_keeper_url" id="form-nunux-keeper-url" value="{{ .form.NunuxKeeperURL }}" placeholder="https://api.nunux.org/keeper" spellcheck="false">
  157. <label for="form-nunux-keeper-api-key">{{ t "form.integration.nunux_keeper_api_key" }}</label>
  158. <input type="text" name="nunux_keeper_api_key" id="form-nunux-keeper-api-key" value="{{ .form.NunuxKeeperAPIKey }}" spellcheck="false">
  159. <div class="buttons">
  160. <button type="submit" class="button button-primary" data-label-loading="{{ t "form.submit.saving" }}">{{ t "action.update" }}</button>
  161. </div>
  162. </div>
  163. </details>
  164. <details {{ if .form.PinboardEnabled }}open{{ end }}>
  165. <summary>Pinboard</summary>
  166. <div class="form-section">
  167. <label>
  168. <input type="checkbox" name="pinboard_enabled" value="1" {{ if .form.PinboardEnabled }}checked{{ end }}> {{ t "form.integration.pinboard_activate" }}
  169. </label>
  170. <label for="form-pinboard-token">{{ t "form.integration.pinboard_token" }}</label>
  171. <input type="password" name="pinboard_token" id="form-pinboard-token" value="{{ .form.PinboardToken }}" autocomplete="new-password">
  172. <label for="form-pinboard-tags">{{ t "form.integration.pinboard_tags" }}</label>
  173. <input type="text" name="pinboard_tags" id="form-pinboard-tags" value="{{ .form.PinboardTags }}" spellcheck="false">
  174. <label>
  175. <input type="checkbox" name="pinboard_mark_as_unread" value="1" {{ if .form.PinboardMarkAsUnread }}checked{{ end }}> {{ t "form.integration.pinboard_bookmark" }}
  176. </label>
  177. <div class="buttons">
  178. <button type="submit" class="button button-primary" data-label-loading="{{ t "form.submit.saving" }}">{{ t "action.update" }}</button>
  179. </div>
  180. </div>
  181. </details>
  182. <details {{ if .form.PocketEnabled }}open{{ end }}>
  183. <summary>Pocket</summary>
  184. <div class="form-section">
  185. <label>
  186. <input type="checkbox" name="pocket_enabled" value="1" {{ if .form.PocketEnabled }}checked{{ end }}> {{ t "form.integration.pocket_activate" }}
  187. </label>
  188. {{ if not .hasPocketConsumerKeyConfigured }}
  189. <label for="form-pocket-consumer-key">{{ t "form.integration.pocket_consumer_key" }}</label>
  190. <input type="text" name="pocket_consumer_key" id="form-pocket-consumer-key" value="{{ .form.PocketConsumerKey }}" spellcheck="false">
  191. {{ end }}
  192. <label for="form-pocket-access-token">{{ t "form.integration.pocket_access_token" }}</label>
  193. <input type="password" name="pocket_access_token" id="form-pocket-access-token" value="{{ .form.PocketAccessToken }}" autocomplete="new-password">
  194. {{ if not .form.PocketAccessToken }}
  195. <p><a href="{{ route "pocketAuthorize" }}">{{ t "form.integration.pocket_connect_link" }}</a></p>
  196. {{ end }}
  197. <div class="buttons">
  198. <button type="submit" class="button button-primary" data-label-loading="{{ t "form.submit.saving" }}">{{ t "action.update" }}</button>
  199. </div>
  200. </div>
  201. </details>
  202. <details {{ if .form.ReadwiseEnabled }}open{{ end }}>
  203. <summary>Readwise Reader</summary>
  204. <div class="form-section">
  205. <label>
  206. <input type="checkbox" name="readwise_enabled" value="1" {{ if .form.ReadwiseEnabled }}checked{{ end }}> {{ t "form.integration.readwise_activate" }}
  207. </label>
  208. <label for="form-readwise-api-key">{{ t "form.integration.readwise_api_key" }}</label>
  209. <input type="text" name="readwise_api_key" id="form-readwise-api-key" value="{{ .form.ReadwiseAPIKey }}" spellcheck="false">
  210. <p><a href="https://readwise.io/access_token" target="_blank">{{ t "form.integration.readwise_api_key_link" }}</a></p>
  211. <div class="buttons">
  212. <button type="submit" class="button button-primary" data-label-loading="{{ t "form.submit.saving" }}">{{ t "action.update" }}</button>
  213. </div>
  214. </div>
  215. </details>
  216. <details {{ if .form.ShaarliEnabled }}open{{ end }}>
  217. <summary>Shaarli</summary>
  218. <div class="form-section">
  219. <label>
  220. <input type="checkbox" name="shaarli_enabled" value="1" {{ if .form.ShaarliEnabled }}checked{{ end }}> {{ t "form.integration.shaarli_activate" }}
  221. </label>
  222. <label for="form-shaarli-url">{{ t "form.integration.shaarli_endpoint" }}</label>
  223. <input type="url" name="shaarli_url" id="form-shaarli-url" value="{{ .form.ShaarliURL }}" placeholder="https://shaarli.example.org" spellcheck="false">
  224. <label for="form-shaarli-api-secret">{{ t "form.integration.shaarli_api_secret" }}</label>
  225. <input type="password" name="shaarli_api_secret" id="form-shaarli-api-secret" value="{{ .form.ShaarliAPISecret }}" autocomplete="new-password">
  226. <div class="buttons">
  227. <button type="submit" class="button button-primary" data-label-loading="{{ t "form.submit.saving" }}">{{ t "action.update" }}</button>
  228. </div>
  229. </div>
  230. </details>
  231. <details {{ if .form.ShioriEnabled }}open{{ end }}>
  232. <summary>Shiori</summary>
  233. <div class="form-section">
  234. <label>
  235. <input type="checkbox" name="shiori_enabled" value="1" {{ if .form.ShioriEnabled }}checked{{ end }}> {{ t "form.integration.shiori_activate" }}
  236. </label>
  237. <label for="form-shiori-url">{{ t "form.integration.shiori_endpoint" }}</label>
  238. <input type="url" name="shiori_url" id="form-shiori-url" value="{{ .form.ShioriURL }}" placeholder="https://shiori.example.org" spellcheck="false">
  239. <label for="form-shiori-username">{{ t "form.integration.shiori_username" }}</label>
  240. <input type="text" name="shiori_username" id="form-shiori-username" value="{{ .form.ShioriUsername }}" spellcheck="false">
  241. <label for="form-shiori-password">{{ t "form.integration.shiori_password" }}</label>
  242. <input type="password" name="shiori_password" id="form-shiori-password" value="{{ .form.ShioriPassword }}" autocomplete="new-password">
  243. <div class="buttons">
  244. <button type="submit" class="button button-primary" data-label-loading="{{ t "form.submit.saving" }}">{{ t "action.update" }}</button>
  245. </div>
  246. </div>
  247. </details>
  248. <details {{ if .form.TelegramBotEnabled }}open{{ end }}>
  249. <summary>Telegram Bot</summary>
  250. <div class="form-section">
  251. <label>
  252. <input type="checkbox" name="telegram_bot_enabled" value="1" {{ if .form.TelegramBotEnabled }}checked{{ end }}> {{ t "form.integration.telegram_bot_activate" }}
  253. </label>
  254. <label for="form-telegram-bot-token">{{ t "form.integration.telegram_bot_token" }}</label>
  255. <input type="text" name="telegram_bot_token" id="form-telegram-bot-token" value="{{ .form.TelegramBotToken }}" placeholder="bot123456:Abcdefg" spellcheck="false">
  256. <label for="form-telegram-chat-id">{{ t "form.integration.telegram_chat_id" }}</label>
  257. <input type="text" name="telegram_bot_chat_id" id="form-telegram-chat-id" value="{{ .form.TelegramBotChatID }}" spellcheck="false">
  258. <label for="form-telegram-topic-id">{{ t "form.integration.telegram_topic_id" }}</label>
  259. <input type="number" name="telegram_bot_topic_id" id="form-telegram-topic-id" {{ if .form.TelegramBotTopicID }}value="{{ .form.TelegramBotTopicID }}"{{ end }}>
  260. <label>
  261. <input type="checkbox" name="telegram_bot_disable_web_page_preview" value="1" {{ if .form.TelegramBotDisableWebPagePreview }}checked{{ end }}> {{ t "form.integration.telegram_bot_disable_web_page_preview" }}
  262. </label>
  263. <label>
  264. <input type="checkbox" name="telegram_bot_disable_notification" value="1" {{ if .form.TelegramBotDisableNotification }}checked{{ end }}> {{ t "form.integration.telegram_bot_disable_notification" }}
  265. </label>
  266. <label>
  267. <input type="checkbox" name="telegram_bot_disable_buttons" value="1" {{ if .form.TelegramBotDisableButtons }}checked{{ end }}> {{ t "form.integration.telegram_bot_disable_buttons" }}
  268. </label>
  269. <div class="buttons">
  270. <button type="submit" class="button button-primary" data-label-loading="{{ t "form.submit.saving" }}">{{ t "action.update" }}</button>
  271. </div>
  272. </div>
  273. </details>
  274. <details {{ if .form.WallabagEnabled }}open{{ end }}>
  275. <summary>Wallabag</summary>
  276. <div class="form-section">
  277. <label>
  278. <input type="checkbox" name="wallabag_enabled" value="1" {{ if .form.WallabagEnabled }}checked{{ end }}> {{ t "form.integration.wallabag_activate" }}
  279. </label>
  280. <label>
  281. <input type="checkbox" name="wallabag_only_url" value="1" {{ if .form.WallabagOnlyURL }}checked{{ end }}> {{ t "form.integration.wallabag_only_url" }}
  282. </label>
  283. <label for="form-wallabag-url">{{ t "form.integration.wallabag_endpoint" }}</label>
  284. <input type="url" name="wallabag_url" id="form-wallabag-url" value="{{ .form.WallabagURL }}" placeholder="http://v2.wallabag.org/" spellcheck="false">
  285. <label for="form-wallabag-client-id">{{ t "form.integration.wallabag_client_id" }}</label>
  286. <input type="text" name="wallabag_client_id" id="form-wallabag-client-id" value="{{ .form.WallabagClientID }}" spellcheck="false">
  287. <label for="form-wallabag-client-secret">{{ t "form.integration.wallabag_client_secret" }}</label>
  288. <input type="password" name="wallabag_client_secret" id="form-wallabag-client-secret" value="{{ .form.WallabagClientSecret }}" autocomplete="new-password">
  289. <label for="form-wallabag-username">{{ t "form.integration.wallabag_username" }}</label>
  290. <input type="text" name="wallabag_username" id="form-wallabag-username" value="{{ .form.WallabagUsername }}" spellcheck="false">
  291. <label for="form-wallabag-password">{{ t "form.integration.wallabag_password" }}</label>
  292. <input type="password" name="wallabag_password" id="form-wallabag-password" value="{{ .form.WallabagPassword }}" autocomplete="new-password">
  293. <div class="buttons">
  294. <button type="submit" class="button button-primary" data-label-loading="{{ t "form.submit.saving" }}">{{ t "action.update" }}</button>
  295. </div>
  296. </div>
  297. </details>
  298. <details {{ if .form.WebhookEnabled }}open{{ end }}>
  299. <summary>Webhook</summary>
  300. <div class="form-section">
  301. <label>
  302. <input type="checkbox" name="webhook_enabled" value="1" {{ if .form.WebhookEnabled }}checked{{ end }}> {{ t "form.integration.webhook_activate" }}
  303. </label>
  304. <label for="form-webhook-url">{{ t "form.integration.webhook_url" }}</label>
  305. <input type="url" name="webhook_url" id="form-webhook-url" value="{{ .form.WebhookURL }}" placeholder="https://username:password@example.org" spellcheck="false">
  306. {{ if .form.WebhookSecret }}
  307. <label for="form-webhook-secret">{{ t "form.integration.webhook_secret" }}</label>
  308. <input type="text" name="webhook_secret" id="form-webhook-secret" value="{{ .form.WebhookSecret }}" spellcheck="false" readonly>
  309. {{ end }}
  310. <div class="buttons">
  311. <button type="submit" class="button button-primary" data-label-loading="{{ t "form.submit.saving" }}">{{ t "action.update" }}</button>
  312. </div>
  313. </div>
  314. </details>
  315. <details {{ if .form.RSSBridgeEnabled }}open{{ end }}>
  316. <summary>RSS-Bridge</summary>
  317. <div class="form-section">
  318. <label>
  319. <input type="checkbox" name="rssbridge_enabled" value="1" {{ if .form.RSSBridgeEnabled }}checked{{ end }}> {{ t "form.integration.rssbridge_activate" }}
  320. </label>
  321. <label for="form-rssbridge-url">{{ t "form.integration.rssbridge_url" }}</label>
  322. <input type="url" name="rssbridge_url" id="form-rssbridge-url" value="{{ .form.RSSBridgeURL }}" spellcheck="false">
  323. <div class="buttons">
  324. <button type="submit" class="button button-primary" data-label-loading="{{ t "form.submit.saving" }}">{{ t "action.update" }}</button>
  325. </div>
  326. </div>
  327. </details>
  328. </form>
  329. <h3>{{ t "page.integration.bookmarklet" }}</h3>
  330. <div class="panel">
  331. <p>{{ t "page.integration.bookmarklet.help" }}</p>
  332. <div class="bookmarklet">
  333. <a href="javascript:location.href='{{ rootURL }}{{ route "bookmarklet" }}?uri='+encodeURIComponent(window.location.href)">{{ t "page.integration.bookmarklet.name" }}</a>
  334. </div>
  335. <p>{{ t "page.integration.bookmarklet.instructions" }}</p>
  336. </div>
  337. {{ end }}