Config_member.html 802 B

1234567891011121314151617181920212223242526272829
  1. <form method='post' id="form1" action="{:U('Config/dosite')}">
  2. <table cellpadding=0 cellspacing=0 width="100%" class="table_form" >
  3. <volist name="member_config" id="vo">
  4. {if $vo[varname] =='member_getpwdemaitpl' || $vo[varname]=='member_emailchecktpl'}
  5. <tr>
  6. <th width="140">{$vo.info}:</th>
  7. <td><textarea id="{$vo[varname]}" name="{$vo[varname]}" rows="5" cols="50">{$vo['value']|htmlspecialchars|stripslashes}</textarea></td>
  8. </tr>
  9. {else}
  10. <tr>
  11. <th width="140">{$vo.info}:</th>
  12. <td>{:Form::radio(array('field'=>$vo[varname],'options'=>array('1'=>L('yes'),'0'=>L('no'))),$vo['value'])}</td>
  13. </tr>
  14. {/if}
  15. </volist>
  16. </table>
  17. <div class="btn">
  18. <INPUT TYPE="submit" value="{:L('save')}" class="button buttonBtn" >
  19. <input TYPE="reset" value="{:L('reset')}" class="button">
  20. </div>
  21. </form>
  22. </div>