more font size tweaks.
[citadel.git] / webcit / static / t / prefs / pushemail.html
1     <div id="room_banner_override">
2       <h1><?_("Configure Push Email")></h1>
3     </div>
4
5     <div id="content" class="config_service">
6     <p>
7     <!-- NOT beginbox -->
8     <div class="box">
9     <div class="boxlabel"><?_("Push email and SMS settings")></div>
10     <div class="boxcontent">
11         <!-- still not begin box -->
12     <!-- Begin Push email configure -->
13
14       <div id="pushemail">
15         <div class="instructions">
16           <p>
17 <?_("If your administrator has enabled the functionality, Citadel can notify a Funambol server that you haved recieved new email and automatically syncronize any devices you have with the Funambol client installed.")></p>
18
19           <p>
20 <?_("Alternatively, if the administrator has configured it, Citadel can send a text message to you when new mail arrives.")></p>
21         </div>
22
23         <form id="pushconfig" method="post" action="save_pushemail">
24           <p class="option">
25             <input type="radio" name="pushsetting" value="funambol" <?%("COND:LONGVECTOR", 1, 1, 4, 'CHECKED', "")>>
26             <strong><?_("Notify Funambol server")></strong>
27           </p>
28
29           <p class="option">
30             <input type="radio" name="pushsetting" value="textmessage" <?%("COND:LONGVECTOR", 1, 1, 3, 'CHECKED', "")>>
31             <strong><?_("Send a text message to...")></strong> 
32             <input type="text" name="user_sms_number" size="20" value=" " >
33             <?_("(Use international format, without any leading zeros, spaces or hypens, like +61415011501)")>
34           </p>
35
36           <p class="option">
37             <input type="radio" name="pushsetting" value="httpmessage" <?%("COND:LONGVECTOR", 1, 1, 5, 'CHECKED', "")>>
38             <strong><?_("Use custom notification scheme configured by your Admin")></strong>
39           </p>
40
41           <p class="option">
42             <input type="radio" name="pushsetting" value="none" <?%("COND:LONGVECTOR", 1, 1, 2, "CHECKED", "")>>
43             <strong><?_("Don‘t send any notifications")></strong>
44           </p>
45
46           <p><input type="submit" name="submit" value="Save settings"></p>
47         </form>
48         <br>
49         <br>
50       </div>
51       </div>
52       </div>
53     </p>