diff options
author | ArthurHoaro <arthur@hoa.ro> | 2017-01-14 15:51:30 +0100 |
---|---|---|
committer | ArthurHoaro <arthur@hoa.ro> | 2017-02-27 20:01:54 +0100 |
commit | 009ce9358168cc06c76fc2f4162829e552e633a3 (patch) | |
tree | 43b251326a24c6600acead1c406f7c18f291be8e /tpl/default/configure.html | |
parent | 9e5a37cc7f4eb1c83222a94eb83d4e99ce4460a4 (diff) | |
download | Shaarli-009ce9358168cc06c76fc2f4162829e552e633a3.tar.gz Shaarli-009ce9358168cc06c76fc2f4162829e552e633a3.tar.zst Shaarli-009ce9358168cc06c76fc2f4162829e552e633a3.zip |
Move default template to vintage folder
Diffstat (limited to 'tpl/default/configure.html')
-rw-r--r-- | tpl/default/configure.html | 121 |
1 files changed, 0 insertions, 121 deletions
diff --git a/tpl/default/configure.html b/tpl/default/configure.html deleted file mode 100644 index 5820e6e4..00000000 --- a/tpl/default/configure.html +++ /dev/null | |||
@@ -1,121 +0,0 @@ | |||
1 | <!DOCTYPE html> | ||
2 | <html> | ||
3 | <head>{include="includes"}</head> | ||
4 | <body onload="document.configform.title.focus();"> | ||
5 | <div id="pageheader"> | ||
6 | {include="page.header"} | ||
7 | {$timezone_js} | ||
8 | <form method="POST" action="#" name="configform" id="configform"> | ||
9 | <input type="hidden" name="token" value="{$token}"> | ||
10 | <table id="configuration_table"> | ||
11 | |||
12 | <tr> | ||
13 | <td><b>Page title:</b></td> | ||
14 | <td><input type="text" name="title" id="title" size="50" value="{$title}"></td> | ||
15 | </tr> | ||
16 | |||
17 | <tr> | ||
18 | <td><b>Title link:</b></td> | ||
19 | <td><input type="text" name="titleLink" id="titleLink" size="50" value="{$titleLink}"><br/><label | ||
20 | for="titleLink">(default value is: ?)</label></td> | ||
21 | </tr> | ||
22 | |||
23 | <tr> | ||
24 | <td><b>Theme:</b></td> | ||
25 | <td> | ||
26 | <select name="theme" id="theme"> | ||
27 | {loop="$theme_available"} | ||
28 | <option value="{$value}" {if="$value===$theme"}selected{/if}> | ||
29 | {$value|ucfirst} | ||
30 | </option> | ||
31 | {/loop} | ||
32 | </select> | ||
33 | </td> | ||
34 | </tr> | ||
35 | |||
36 | <tr> | ||
37 | <td><b>Timezone:</b></td> | ||
38 | <td>{$timezone_form}</td> | ||
39 | </tr> | ||
40 | |||
41 | <tr> | ||
42 | <td><b>Redirector</b></td> | ||
43 | <td> | ||
44 | <input type="text" name="redirector" id="redirector" size="50" value="{$redirector}"><br> | ||
45 | (e.g. <i>http://anonym.to/?</i> will mask the HTTP_REFERER) | ||
46 | </td> | ||
47 | </tr> | ||
48 | |||
49 | <tr> | ||
50 | <td><b>Security:</b></td> | ||
51 | <td> | ||
52 | <input type="checkbox" name="disablesessionprotection" id="disablesessionprotection" | ||
53 | {if="$session_protection_disabled"}checked{/if}> | ||
54 | <label | ||
55 | for="disablesessionprotection"> Disable session cookie hijacking protection (Check this if you get | ||
56 | disconnected often or if your IP address changes often.)</label> | ||
57 | </td> | ||
58 | </tr> | ||
59 | |||
60 | <tr> | ||
61 | <td valign="top"><b>New link:</b></td> | ||
62 | <td> | ||
63 | <input type="checkbox" name="privateLinkByDefault" id="privateLinkByDefault" | ||
64 | {if="$private_links_default"}checked{/if}/> | ||
65 | <label for="privateLinkByDefault"> | ||
66 | All new links are private by default | ||
67 | </label> | ||
68 | </td> | ||
69 | </tr> | ||
70 | <tr> | ||
71 | <td valign="top"><b>RSS direct links</b></td> | ||
72 | <td> | ||
73 | <input type="checkbox" name="enableRssPermalinks" id="enableRssPermalinks" | ||
74 | {if="$enable_rss_permalinks"}checked{/if}/> | ||
75 | <label for="enableRssPermalinks"> | ||
76 | Disable it to use permalinks in RSS feed instead of direct links to your shaared links. Currently <b> | ||
77 | {if="$enable_rss_permalinks"}enabled{else}disabled{/if}.</b> | ||
78 | </label> | ||
79 | </td> | ||
80 | </tr> | ||
81 | <tr> | ||
82 | <td valign="top"><b>Hide public links</b></td> | ||
83 | <td> | ||
84 | <input type="checkbox" name="hidePublicLinks" id="hidePublicLinks" | ||
85 | {if="$hide_public_links"}checked{/if}/> | ||
86 | <label for="hidePublicLinks"> Do not show any links if the user is not logged in.</label> | ||
87 | </td> | ||
88 | </tr> | ||
89 | <tr> | ||
90 | <td valign="top"><b>Update:</b></td> | ||
91 | <td> | ||
92 | <input type="checkbox" name="updateCheck" id="updateCheck" | ||
93 | {if="$enable_update_check"}checked{/if}/> | ||
94 | <label for="updateCheck"> Notify me when a new release is ready</label> | ||
95 | </td> | ||
96 | </tr> | ||
97 | <tr> | ||
98 | <td valign="top"><b>Enable REST API</b></td> | ||
99 | <td> | ||
100 | <input type="checkbox" name="apiEnabled" id="apiEnabled" | ||
101 | {if="$api_enabled"}checked{/if}/> | ||
102 | <label for="apiEnabled"> Allow third party software to use Shaarli such as mobile application.</label> | ||
103 | </td> | ||
104 | </tr> | ||
105 | <tr> | ||
106 | <td valign="top"><b>API secret</b></td> | ||
107 | <td> | ||
108 | <input type="text" name="apiSecret" id="apiSecret" size="50" value="{$api_secret}" /> | ||
109 | </td> | ||
110 | </tr> | ||
111 | |||
112 | <tr> | ||
113 | <td></td> | ||
114 | <td class="right"><input type="submit" name="Save" value="Save config" class="bigbutton"></td> | ||
115 | </tr> | ||
116 | </table> | ||
117 | </form> | ||
118 | </div> | ||
119 | {include="page.footer"} | ||
120 | </body> | ||
121 | </html> | ||