source: extensions/oAuth/admin/template/config.tpl @ 20323

Last change on this file since 20323 was 20323, checked in by mistic100, 11 years ago

fix redirect error, provide 3 sizes of icons, display login info on register page

File size: 3.2 KB
Line 
1{combine_css path=$OAUTH_PATH|@cat:"admin/template/style.css"}
2
3<div class="titrePage">
4        <h2>OAuth</h2>
5</div>
6
7<form method="post" action="" class="properties">
8<fieldset id="commentsConf">
9  <ul>
10    <li>
11      <label>
12        <input type="checkbox" name="display_menubar" {if $display_menubar}checked="checked"{/if}>
13        <b>{'Display sign in buttons in the menubar'|@translate}</b>
14      </label>
15    </li>
16
17    <li>
18      <label>
19        <input type="checkbox" name="display_register" {if $display_register}checked="checked"{/if}>
20        <b>{'Display sign in buttons on the register page'|@translate}</b>
21      </label>
22    </li>
23  </ul>
24</fieldset>
25
26<fieldset id="commentsConf">
27  <ul>
28    <li>
29      <b>{'Icon size on the identification page'|@translate} :</b><br>
30      <label>
31        <input type="radio" name="identification_icon" value="16px" {if $identification_icon=='16px'}checked="checked"{/if}>
32        16px
33        <img src="{$OAUTH_PATH}template/icons/16px/facebook.png">
34        <img src="{$OAUTH_PATH}template/icons/16px/google.png">
35        <img src="{$OAUTH_PATH}template/icons/16px/twitter.png">
36      </label>
37      <label>
38        <input type="radio" name="identification_icon" value="26px" {if $identification_icon=='26px'}checked="checked"{/if}>
39        26px
40        <img src="{$OAUTH_PATH}template/icons/26px/facebook.png">
41        <img src="{$OAUTH_PATH}template/icons/26px/google.png">
42        <img src="{$OAUTH_PATH}template/icons/26px/twitter.png">
43      </label>
44      <label>
45        <input type="radio" name="identification_icon" value="38px" {if $identification_icon=='38px'}checked="checked"{/if}>
46        38px
47        <img src="{$OAUTH_PATH}template/icons/38px/facebook.png">
48        <img src="{$OAUTH_PATH}template/icons/38px/google.png">
49        <img src="{$OAUTH_PATH}template/icons/38px/twitter.png">
50      </label>
51    </li>
52   
53    <li>
54      <b>{'Icon size in the menubar'|@translate} :</b><br>
55      <label>
56        <input type="radio" name="menubar_icon" value="16px" {if $menubar_icon=='16px'}checked="checked"{/if}>
57        16px
58        <img src="{$OAUTH_PATH}template/icons/16px/facebook.png">
59        <img src="{$OAUTH_PATH}template/icons/16px/google.png">
60        <img src="{$OAUTH_PATH}template/icons/16px/twitter.png">
61      </label>
62      <label>
63        <input type="radio" name="menubar_icon" value="26px" {if $menubar_icon=='26px'}checked="checked"{/if}>
64        26px
65        <img src="{$OAUTH_PATH}template/icons/26px/facebook.png">
66        <img src="{$OAUTH_PATH}template/icons/26px/google.png">
67        <img src="{$OAUTH_PATH}template/icons/26px/twitter.png">
68      </label>
69      <label>
70        <input type="radio" name="menubar_icon" value="38px" {if $menubar_icon=='38px'}checked="checked"{/if}>
71        38px
72        <img src="{$OAUTH_PATH}template/icons/38px/facebook.png">
73        <img src="{$OAUTH_PATH}template/icons/38px/google.png">
74        <img src="{$OAUTH_PATH}template/icons/38px/twitter.png">
75      </label>
76    </li>
77  </ul>
78</fieldset>
79
80<p style="text-align:left;"><input type="submit" name="save_config" value="{'Save Settings'|@translate}"></p>
81</form>
82
83<p>Icons from http://www.wpzoom.com - Library from http://hybridauth.sourceforge.net/</p>
Note: See TracBrowser for help on using the repository browser.