Subversion Repositories eFlore/Applications.del

Rev

Go to most recent revision | Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
690 gduche 1
<!DOCTYPE ui:UiBinder SYSTEM "http://dl.google.com/gwt/DTD/xhtml.ent">
2
<ui:UiBinder
3
  xmlns:ui='urn:ui:com.google.gwt.uibinder'
4
  xmlns:g='urn:import:com.google.gwt.user.client.ui'>
5
 
6
<ui:with field="constants" type="org.tela_botanica.del.client.i18n.Vocabulary"/>
7
<ui:style src="formulaireCommentaire.css" />
8
<g:HTMLPanel styleName="{style.formulaireProposition}">
9
	<g:Label text="{constants.ajouterCommentaire}" styleName="titre"/>
10
	<g:Label text="{constants.infoProposerDetermination}"  styleName="petit"/>
11
	<g:HTML><br /></g:HTML>
12
		<g:HTMLPanel>
13
		  	  <g:HTMLPanel styleName="{style.colonneGauche}">
14
		  	  		<g:Label text="{constants.vous}" styleName="sousTitre"/>
15
		  	  		<g:HTMLPanel styleName="{style.zoneNom}">
16
		  	  			<g:Label text="{constants.nom}" styleName="petit" />
17
		  	  			<g:TextBox ui:field="nom"/>
18
		  	  		</g:HTMLPanel>
19
		  	  		<g:HTMLPanel styleName="{style.zonePrenom}">
20
		  	  			<g:Label text="{constants.prenom}" styleName="petit" />
21
		  	  			<g:TextBox ui:field="prenom"/>
22
		  	  		</g:HTMLPanel>
23
 
24
		  	  		<g:HTMLPanel styleName="{style.zoneEmail}">
25
		  	  			<g:Label text="Votre adresse email : " styleName="petit" />
26
		  	  			<g:TextBox ui:field="courriel" />
27
		  	  		</g:HTMLPanel>
28
		  	  		<g:HTML><br /></g:HTML>
29
			  		<g:Label text="{constants.commentaire}" styleName="sousTitre"/>
30
			  		<g:TextArea ui:field="commentaire" styleName="{style.commentaire}" />
31
		  		</g:HTMLPanel>
32
		  	</g:HTMLPanel>
33
<g:Button text="{constants.boutonProposer}" ui:field="boutonValidationCommentaire" styleName="{style.boutonProposer}"/>
34
  </g:HTMLPanel>
35
</ui:UiBinder>