contact-form.html 1011 B

12345678910111213141516171819202122232425262728293031323334353637
  1. <html>
  2. <head>
  3. <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
  4. <title>Contact Form</title>
  5. <!-- ExtJS -->
  6. <link rel="stylesheet" type="text/css" href="../../resources/css/ext-all.css" />
  7. <script type="text/javascript" src="../../ext-all.js"></script>
  8. <!-- Shared -->
  9. <link rel="stylesheet" type="text/css" href="../shared/example.css" />
  10. <!-- GC -->
  11. <!-- Example -->
  12. <script type="text/javascript" src="contact-form.js"></script>
  13. <style type="text/css">
  14. .contactBtn button {
  15. padding: 0 5px;
  16. font-size: 16px;
  17. }
  18. </style>
  19. </head>
  20. <body>
  21. <h1>Contact Form</h1>
  22. <p>
  23. This shows an example of a common "Contact Us" form in a popup window. The form uses vbox and hbox
  24. layouts to acheive a uniform flexible layout even when the window is resized.
  25. </p>
  26. <p>The js is not minified so it is readable. See <a href="contact-form.js">contact-form.js</a>.</p>
  27. </body>
  28. </html>