]> git.immae.eu Git - github/shaarli/Shaarli.git/blame - tpl/vintage/configure.html
Use web-thumbnailer to retrieve thumbnails
[github/shaarli/Shaarli.git] / tpl / vintage / configure.html
CommitLineData
45034273
SS
1<!DOCTYPE html>
2<html>
3<head>{include="includes"}</head>
4<body onload="document.configform.title.focus();">
5<div id="pageheader">
823a363c 6 {include="page.header"}
823a363c
A
7 <form method="POST" action="#" name="configform" id="configform">
8 <input type="hidden" name="token" value="{$token}">
9 <table id="configuration_table">
858c5c2b 10
823a363c
A
11 <tr>
12 <td><b>Page title:</b></td>
13 <td><input type="text" name="title" id="title" size="50" value="{$title}"></td>
14 </tr>
858c5c2b 15
823a363c 16 <tr>
6177f320 17 <td><b>Home link:</b></td>
823a363c
A
18 <td><input type="text" name="titleLink" id="titleLink" size="50" value="{$titleLink}"><br/><label
19 for="titleLink">(default value is: ?)</label></td>
20 </tr>
adc4aee8
KT
21
22 <tr>
23 <td><b>Theme:</b></td>
24 <td>
25 <select name="theme" id="theme">
26 {loop="$theme_available"}
04a0e8ea 27 <option value="{$value}" {if="$value===$theme"}selected{/if}>
a0df0651
A
28 {$value|ucfirst}
29 </option>
adc4aee8
KT
30 {/loop}
31 </select>
adc4aee8
KT
32 </td>
33 </tr>
34
823a363c
A
35 <tr>
36 <td><b>Timezone:</b></td>
49bc541d
A
37 <td>
38 <select id="continent" name="continent">
39 {loop="$continents"}
40 {if="$key !== 'selected'"}
41 <option value="{$value}" {if="$continents.selected === $value"}selected{/if}>
42 {$value}
43 </option>
44 {/if}
45 {/loop}
46 </select>
47 <select id="city" name="city">
48 {loop="$cities"}
49 {if="$key !== 'selected'"}
50 <option value="{$value.city}"
51 {if="$cities.selected === $value.city"}selected{/if}
52 data-continent="{$value.continent}">
53 {$value.city}
54 </option>
55 {/if}
56 {/loop}
57 </select>
58 </td>
823a363c 59 </tr>
858c5c2b 60
823a363c
A
61 <tr>
62 <td><b>Redirector</b></td>
63 <td>
64 <input type="text" name="redirector" id="redirector" size="50" value="{$redirector}"><br>
65 (e.g. <i>http://anonym.to/?</i> will mask the HTTP_REFERER)
66 </td>
67 </tr>
858c5c2b 68
823a363c
A
69 <tr>
70 <td><b>Security:</b></td>
71 <td>
72 <input type="checkbox" name="disablesessionprotection" id="disablesessionprotection"
2e193ad3 73 {if="$session_protection_disabled"}checked{/if}>
823a363c
A
74 <label
75 for="disablesessionprotection">&nbsp;Disable session cookie hijacking protection (Check this if you get
76 disconnected often or if your IP address changes often.)</label>
77 </td>
78 </tr>
858c5c2b 79
823a363c
A
80 <tr>
81 <td valign="top"><b>New link:</b></td>
82 <td>
83 <input type="checkbox" name="privateLinkByDefault" id="privateLinkByDefault"
684e662a 84 {if="$private_links_default"}checked{/if}/>
823a363c
A
85 <label for="privateLinkByDefault">
86 &nbsp;All new links are private by default
87 </label>
88 </td>
89 </tr>
90 <tr>
91 <td valign="top"><b>RSS direct links</b></td>
92 <td>
93 <input type="checkbox" name="enableRssPermalinks" id="enableRssPermalinks"
684e662a 94 {if="$enable_rss_permalinks"}checked{/if}/>
823a363c
A
95 <label for="enableRssPermalinks">
96 &nbsp;Disable it to use permalinks in RSS feed instead of direct links to your shaared links. Currently <b>
da10377b 97 {if="$enable_rss_permalinks"}enabled{else}disabled{/if}.</b>
823a363c
A
98 </label>
99 </td>
100 </tr>
101 <tr>
102 <td valign="top"><b>Hide public links</b></td>
103 <td>
104 <input type="checkbox" name="hidePublicLinks" id="hidePublicLinks"
684e662a 105 {if="$hide_public_links"}checked{/if}/>
823a363c
A
106 <label for="hidePublicLinks">&nbsp;Do not show any links if the user is not logged in.</label>
107 </td>
108 </tr>
109 <tr>
110 <td valign="top"><b>Update:</b></td>
111 <td>
112 <input type="checkbox" name="updateCheck" id="updateCheck"
684e662a 113 {if="$enable_update_check"}checked{/if}/>
823a363c
A
114 <label for="updateCheck">&nbsp;Notify me when a new release is ready</label>
115 </td>
116 </tr>
cbfdcff2 117 <tr>
18e67967 118 <td valign="top"><b>Enable REST API</b></td>
cbfdcff2 119 <td>
76be95e1 120 <input type="checkbox" name="enableApi" id="enableApi"
cbfdcff2 121 {if="$api_enabled"}checked{/if}/>
76be95e1 122 <label for="enableApi">&nbsp;Allow third party software to use Shaarli such as mobile application.</label>
cbfdcff2
A
123 </td>
124 </tr>
125 <tr>
126 <td valign="top"><b>API secret</b></td>
127 <td>
128 <input type="text" name="apiSecret" id="apiSecret" size="50" value="{$api_secret}" />
129 </td>
130 </tr>
1b93137e
A
131 <tr>
132 <td valign="top"><b>Enable thumbnails</b></td>
133 <td>
134 <input type="checkbox" name="enableThumbnails" id="enableThumbnails"
135 {if="$thumbnails_enabled"}checked{/if}/>
136 <label for="enableThumbnails">
137 &nbsp;<strong>Warning:</strong>
138 If you have a large database, the first retrieval may take a few minutes.
139 It's recommended to visit the picture wall after enabling this feature
140 </label>
141 </td>
142 </tr>
567967fd 143
823a363c
A
144 <tr>
145 <td></td>
146 <td class="right"><input type="submit" name="Save" value="Save config" class="bigbutton"></td>
147 </tr>
148 </table>
149 </form>
45034273
SS
150</div>
151{include="page.footer"}
152</body>
ed5b38dd 153</html>