Changeset 5902 for trunk/www/admin/server/broadcast.jsp
- Timestamp:
- Dec 8, 2011, 3:01:38 PM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/www/admin/server/broadcast.jsp
r5900 r5902 75 75 </base:head> 76 76 <base:body onload="init()"> 77 <h1>Broadcast message <base:help helpid="broadcast.message"/></h1> 77 78 <form name="broadcast" action="submit_server.jsp" method="post" onsubmit="return false;"> 78 79 <input type="hidden" name="ID" value="<%=ID%>"> 79 80 <input type="hidden" name="cmd" value="SetBroadcastMessage"> 80 81 81 <h3 class="docked">Broadcast message <base:help helpid="broadcast.message"/></h3> 82 <div class="boxedbottom"> 82 <div class="content"> 83 83 <% 84 84 if (!writePermission) 85 85 { 86 86 %> 87 <table class="fullcc"><tr><td> 87 88 <div class="error">You do not have permission to broadcast messages to users.</div> 89 </td></tr></table> 88 90 <% 89 91 } … … 91 93 { 92 94 %> 93 <table class="f orm">95 <table class="fullform smaller"> 94 96 <tr> 95 <t d class="prompt">Title</td>97 <th>Title</td> 96 98 <td> 97 <input class="text" 98 type="text" name="title" value="<%=HTML.encodeTags(title)%>" size="60"maxlength="255">99 <input class="text" style="width: 98%;" 100 type="text" name="title" value="<%=HTML.encodeTags(title)%>" maxlength="255"> 99 101 </td> 102 <td></td> 100 103 </tr> 101 <tr valign=top>102 <t d class="prompt">Disable login</td>104 <tr> 105 <th>Disable login</td> 103 106 <td> 104 107 <input type="checkbox" name="denyLogin" <%=Boolean.TRUE.equals(denyLogin) ? "checked": ""%> value="1"> 105 108 </td> 109 <td></td> 106 110 </tr> 107 <t r valign=top>108 <t d class="prompt">Message</td>111 <t> 112 <th>Message</td> 109 113 <td> 110 <textarea class="text" rows="15" cols="60" name="message" wrap="virtual"><%=HTML.encodeTags(message)%></textarea> 114 <textarea class="text" style="width: 98%;" rows="15" name="message" wrap="virtual"><%=HTML.encodeTags(message)%></textarea> 115 </td> 116 <td style="width: 20px;"> 111 117 <a href="javascript:Main.zoom('Message', 'broadcast', 'message')" title="Edit in larger window"><base:icon image="zoom.gif" /></a> 112 118 </td> … … 119 125 120 126 </form> 121 <base:buttongroup >127 <base:buttongroup subclass="dialogbuttons"> 122 128 <base:button onclick="clearMessage()" image="remove.png" title="Clear message" /> 123 129 <base:button onclick="saveSettings();" title="Ok" visible="<%=writePermission%>"/>
Note: See TracChangeset
for help on using the changeset viewer.