1<!doctype html>23<html lang="en">4 <head>5 <meta charset="UTF-8" />6 <meta name="viewport" content="width=device-width, initial-scale=1.0" />7 <link rel="icon" href="/static/favicon.ico" sizes="any" />8 <title>Website Digests | Settings</title>9 </head>1011 <body>12 <h1>Settings</h1>13 <form action="/settings" method="POST">14 <table>15 <tr>16 <td><label for="reddit-client-id">Reddit Client ID</label></td>17 <td>18 <input19 type="text"20 id="reddit-client-id"21 name="reddit-client-id"22 value="{{.RedditClientID}}"23 />24 </td>25 </tr>2627 <tr>28 <td>29 <label for="reddit-client-secret">Reddit Client Secret</label>30 </td>31 <td>32 <input33 type="text"34 secret="reddit-client-secret"35 name="reddit-client-secret"36 value="{{.RedditClientSecret}}"37 />38 </td>39 </tr>4041 <tr>42 <td><label for="default-num-posts">Default Num Posts</label></td>43 <td>44 <input45 type="number"46 secret="default-num-posts"47 name="default-num-posts"48 value="{{.DefaultNumPosts}}"49 />50 </td>51 </tr>5253 <tr>54 <td><label for="max-num-posts">Max Num Posts</label></td>55 <td>56 <input57 type="number"58 secret="max-num-posts"59 name="max-num-posts"60 value="{{.MaxNumPosts}}"61 />62 </td>63 </tr>6465 <tr>66 <td><label for="site-fetch-wait">Site Fetch Wait (Hours)</label></td>67 <td>68 <input69 type="number"70 secret="site-fetch-wait"71 name="site-fetch-wait"72 value="{{.SiteFetchWait}}"73 />74 </td>75 </tr>76 </table>77 <input type="submit" />78 </form>79 </body>80</html>