From cdda6b98d785f103d9be6643a99a882c0d65b64c Mon Sep 17 00:00:00 2001 From: fantu <fantu@ispconfig3> Date: Sun, 21 Dec 2008 04:51:07 -0500 Subject: [PATCH] fix parse error --- interface/web/admin/templates/server_ip_edit.htm | 58 +++++++++++++++++++++++++++++----------------------------- 1 files changed, 29 insertions(+), 29 deletions(-) diff --git a/interface/web/admin/templates/server_ip_edit.htm b/interface/web/admin/templates/server_ip_edit.htm index 6e8ce77..89c0b78 100644 --- a/interface/web/admin/templates/server_ip_edit.htm +++ b/interface/web/admin/templates/server_ip_edit.htm @@ -1,29 +1,29 @@ -<table width="500" border="0" cellspacing="0" cellpadding="2"> - <tr> - <td class="frmText11">{tmpl_var name='server_id_txt'}:</td> - <td class="frmText11"> - <select name="server_id" class="text"> - {tmpl_var name='server_id'} - </select> - </td> - </tr> - <tr> - <td class="frmText11">{tmpl_var name='ip_address_txt'}:</td> - <td class="frmText11"><input name="ip_address" type="text" class="text" value="{tmpl_var name='ip_address'}" size="15" maxlength="15"></td> - </tr> - <tr> - <td width="126" class="frmText11">{tmpl_var name='virtualhost_txt'}:</td> - <td width="366" class="frmText11">{tmpl_var name='virtualhost'}</td> - </tr> - <tr> - <td class="frmText11"> </td> - <td class="frmText11"> </td> - </tr> - <tr> - <td> </td> - <td><input name="btn_save" type="button" class="button" value="{tmpl_var name='btn_save_txt'}" onClick="submitForm('pageForm','admin/server_ip_edit.php');"><div class="buttonEnding"></div> - <input name="btn_cancel" type="button" class="button" value="{tmpl_var name='btn_cancel_txt'}" onClick="loadContent('admin/server_ip_list.php');"><div class="buttonEnding"></div> - </td> - </tr> -</table> -<input type="hidden" name="id" value="{tmpl_var name='id'}"> \ No newline at end of file +<h2><tmpl_var name="list_head_txt"></h2> + +<div class="panel panel_server_ip"> + + <div class="pnl_formsarea"> + <fieldset id="wf_area_server_ip"><legend>IP Address</legend> + <span class="wf_oneField"> + <label for="server_id" class="wf_preField">{tmpl_var name='server_id_txt'}</label> + <select id="server_id" name="server_id">{tmpl_var name='server_id'}</select> + </span> + <span class="wf_oneField"> + <label for="ip_address" class="wf_preField">{tmpl_var name='ip_address_txt'}</label> + <input type="text" id="ip_address" name="ip_address" value="{tmpl_var name='ip_address'}" size="15" maxlength="15"> + </span> + <span class="wf_oneField"> + <label for="virtualhost" class="wf_preField">{tmpl_var name='virtualhost_txt'}</label> + <span class="">{tmpl_var name='virtualhost'}</span> + </span> + </fieldset> + + <input type="hidden" name="id" value="{tmpl_var name='id'}"> + + <div class="wf_actions buttons"> + <button class="positive iconstxt icoPositive" type="button" value="{tmpl_var name='btn_save_txt'}" onClick="submitForm('pageForm','admin/server_ip_edit.php');"><span>{tmpl_var name='btn_save_txt'}</span></button> + <button class="negative iconstxt icoNegative" type="button" value="{tmpl_var name='btn_cancel_txt'}" onClick="loadContent('admin/server_ip_list.php');"><span>{tmpl_var name='btn_cancel_txt'}</span></button> + </div> + </div> + +</div> -- Gitblit v1.9.1