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