msg.html 605 B

12345678910111213141516171819202122232425262728
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <title>${siteTitle!}</title>
  5. <meta name="keywords" content="keyword1,keyword2,keyword3">
  6. <meta name="description" content="this is my page">
  7. <meta name="content-type" content="text/html; charset=UTF-8">
  8. <!--<link rel="stylesheet" type="text/css" href="./styles.css">-->
  9. </head>
  10. <body>
  11. @if(msg!=null){
  12. <script type="text/javascript">
  13. var msg= "${msg}";
  14. if(msg=="激活成功 请等待管理员审批"){
  15. alert("${msg}");
  16. }
  17. else {
  18. alert(msg);
  19. }
  20. window.location = "${frontPath!}/4";
  21. </script>
  22. @}
  23. </body>
  24. </html>