rabin 7 years ago
parent
commit
1b08ec4d2e
1 changed files with 16 additions and 1 deletions
  1. 16 1
      tm/template_dir/events_forms_template_new.html

+ 16 - 1
tm/template_dir/events_forms_template_new.html

@@ -1,4 +1,16 @@
 
+<{if $info.end == 2}>
+    <section class="loginbox">
+        <h3>活动已结束!</h3>
+        <p>感谢您的关注,期待您参与我们的其他活动</p>
+        <section class="button-wrapper">
+            <a class="button border" href="<{$listUrl}>">找找其他福利</a>
+            <a class="button" href="<{$giftsUrl}>">查看我的奖品</a>
+        </section>
+    </section>
+<{else}>
+
+
 <form id="ff">
     <{foreach from=$forms item=form}>
     <{if $form.type == 'text'}>
@@ -21,6 +33,8 @@
     <a class="button"  id="common_submit_btn">提交资料</a>
 </section>
 
+
+
 <script>
 $("select").on('change', function () {
     if ($(this).val() == '') {
@@ -29,4 +43,5 @@ $("select").on('change', function () {
         $(this).css({'color':''});
     }
 });
-</script>
+</script>
+<{/if}>