人人商城

notice.html 894B

1234567891011121314151617181920
  1. {template 'common/header'}
  2. <ul class="we7-page-tab">
  3. <li{if $do == 'display'} class="active"{/if}><a href="{php echo url('system/notice');}">用户到期提醒设置</a></li>
  4. </ul>
  5. <div class="body">
  6. <form action="{php echo url('system/notice/post')}" method="post">
  7. <div class="form-group">
  8. {php echo tpl_form_field_clock('time', $value = $time);}
  9. </div>
  10. <div class="form-group">
  11. <label class="radio-inline">用户到期短信开关</label>
  12. <input type="radio" name="status" value="1" {if !empty($sms_info['status'])} checked{/if} id="endtype-2"><label for="endtype-2">开启</label>&nbsp;&nbsp;
  13. <input type="radio" name="status" value="0" {if empty($sms_info['status'])} checked{/if} id="endtype-3"><label for="endtype-3">关闭</label>
  14. </div>
  15. <div>
  16. <input type="submit" value="确定" class="btn btn-primary">
  17. </div>
  18. </form>
  19. </div>
  20. {template 'common/footer'}