appAdd.ftl 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. <!DOCTYPE HTML>
  2. <html xmlns="http://www.w3.org/1999/xhtml">
  3. <head>
  4. <#include "../../layout/header.ftl"/>
  5. <#include "../../layout/common.cssjs.ftl"/>
  6. <#include "../appCommonHead.ftl"/>
  7. </head>
  8. <body>
  9. <form id="actionForm_app" method="post" type="label" autoclose="true" closeWindow="true"
  10. action="<@base/>/apps/basic/add"
  11. forward="<@base/>/apps/list"
  12. enctype="multipart/form-data"
  13. class="needs-validation" novalidate>
  14. <!-- content -->
  15. <!--table-->
  16. <table width="960" class="table table-bordered" >
  17. <tbody>
  18. <tr>
  19. <td ><#include "../appAddCommon.ftl"/></td>
  20. </tr>
  21. <tr>
  22. <td>
  23. <table width="960" class="table table-bordered" >
  24. <tbody>
  25. <tr>
  26. <td colspan=4>
  27. <input class="button" id="status" type="hidden" name="status" value="1"/>
  28. <input class="button btn btn-primary mr-3" id="submitBtn" type="submit" value="<@locale code="button.text.save" />"/>
  29. <input class="button btn btn-secondary mr-3" id="backBtn" type="button" value="<@locale code="button.text.close" />"/>
  30. </td>
  31. </tr>
  32. </tbody>
  33. </table>
  34. </td>
  35. </tr>
  36. </tbody>
  37. </table>
  38. </form>
  39. </body>
  40. </html>