diff options
author | Frédéric Guillot <fred@miniflux.net> | 2017-12-18 20:52:46 -0800 |
---|---|---|
committer | Frédéric Guillot <fred@miniflux.net> | 2017-12-18 20:52:46 -0800 |
commit | b153fa8b3cd2e48bbe13326695f11d2013427ebc (patch) | |
tree | f1329af7075a8b618a58cc86434a55ffcf7ddc12 /server/template/html | |
parent | ce75748cf25d05f795b0ec8c659824345c7f3868 (diff) |
Add Wallabag integration
Diffstat (limited to 'server/template/html')
-rw-r--r-- | server/template/html/integrations.html | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/server/template/html/integrations.html b/server/template/html/integrations.html index adc5a1b..5005d68 100644 --- a/server/template/html/integrations.html +++ b/server/template/html/integrations.html @@ -71,6 +71,28 @@ <input type="password" name="instapaper_password" id="form-instapaper-password" value="{{ .form.InstapaperPassword }}"> </div> + <h3>Wallabag</h3> + <div class="form-section"> + <label> + <input type="checkbox" name="wallabag_enabled" value="1" {{ if .form.WallabagEnabled }}checked{{ end }}> {{ t "Save articles to Wallabag" }} + </label> + + <label for="form-wallabag-url">{{ t "Wallabag API Endpoint" }}</label> + <input type="url" name="wallabag_url" id="form-wallabag-url" value="{{ .form.WallabagURL }}" placeholder="http://v2.wallabag.org/"> + + <label for="form-wallabag-client-id">{{ t "Wallabag Client ID" }}</label> + <input type="text" name="wallabag_client_id" id="form-wallabag-client-id" value="{{ .form.WallabagClientID }}"> + + <label for="form-wallabag-client-secret">{{ t "Wallabag Client Secret" }}</label> + <input type="password" name="wallabag_client_secret" id="form-wallabag-client-secret" value="{{ .form.WallabagClientSecret }}"> + + <label for="form-wallabag-username">{{ t "Wallabag Username" }}</label> + <input type="text" name="wallabag_username" id="form-wallabag-username" value="{{ .form.WallabagUsername }}"> + + <label for="form-wallabag-password">{{ t "Wallabag Password" }}</label> + <input type="password" name="wallabag_password" id="form-wallabag-password" value="{{ .form.WallabagPassword }}"> + </div> + <div class="buttons"> <button type="submit" class="button button-primary" data-label-loading="{{ t "Loading..." }}">{{ t "Update" }}</button> </div> |