I have two GWT Bootstrap form fields Email and password
<b:WellForm height="400px" ui:field="loginPanel">
<g:VerticalPanel horizontalAlignment="ALIGN_CENTER"
width="100%">
<b:FormLabel ui:field="emailErrorLabel" visible="false">
<font color="red">
<i> Please enter your login name</i>
</font>
</b:FormLabel>
<b:TextBox alternateSize="LARGE" b:id="Email"
ui:field="Email" placeholder="E-mail" width="335px"
height="30px" />
</g:VerticalPanel>
and i want browser to tell to store the email addresses and password entered and prompt remember password .how can i do this in gwt bootstrap. please help