1<!DOCTYPE ui:UiBinder SYSTEM "http://dl.google.com/gwt/DTD/xhtml.ent">
2<ui:UiBinder xmlns:ui="urn:ui:com.google.gwt.uibinder"
3   xmlns:g="urn:import:com.google.gwt.user.client.ui">
4   <ui:style>
5   .validateError
6   {
7      margin-top: 5px;
8      color: red;
9      font-size: 9px;
10   }
11   </ui:style>
12   <g:HTMLPanel>
13   <g:TextBox ui:field="appTitle_"></g:TextBox>
14   <g:HTMLPanel visible="false" ui:field="nameValidatePanel_">
15     <g:Label styleName="{style.validateError}"
16              ui:field="error_"
17              text="Valid names contain 4 to 64 alphanumeric characters, dashes, and underscores.">
18     </g:Label>
19   </g:HTMLPanel>
20   </g:HTMLPanel>
21</ui:UiBinder>
22