<?xml version="1.0" encoding="gb2312"?>
<!-- WBXML v1.1 -->
<!-- Document Public identifier = 0x4 -->
<!DOCTYPE wml PUBLIC "-//WAPFORUM//DTD WML 1.1//EN"
			"http://www.wapforum.org/DTD/wml_1.1.xml">
<!-- Charset encoding = 0x6A -->
<!-- String Table Length = 48 bytes -->

<wml>
  <template>
<do type="accept" name="verify" label="输入验证(Input verify)"><go href="input_verify.wml"/></do>
<do type="accept" name="previous" label="后退(Previous)"><prev/></do>
<do type="accept" name="quit1" label="输入选择(Input selection"><go href="complex_input.wml"/></do>
<do type="accept" name="quit2" label="主菜单(Main menu"><go href="index.wml"/></do>
<onevent type="onenterforward"><refresh><setvar name="input" value=""/></refresh></onevent>
 <onevent type="onenterbackward"><refresh><setvar name="input" value=""/></refresh></onevent>
 </template>

  <card id="card1" title="Card 1" >
    <do type="accept" name="continue" label="继续(Continue)"><go href="#card2"/></do>
    <p>
      Chinese, Latin uppercase and punctuation, not numeric:
      <input type="text" name="input" format="*A"/>
    </p>
   </card>
   
    <card id="card2" title="Card 2" >
    <do type="accept" name="continue" label="继续(Continue)"><go href="#card3"/></do>
    <p>
      Chinese, Latin lowercase and punctuation, not numeric:
      <input type="text" name="input" format="*a"/>
    </p> 
    </card>
    
   <card id="card3" title="Card 3" >
    <do type="accept" name="continue" label="继续(Continue)"><go href="#card4"/></do>  
    <p>
      Numeric only:
      <input type="text" name="input" format="*N"/>
    </p>  
    </card>
    
  <card id="card4" title="Card 4" >
    <do type="accept" name="continue" label="继续(Continue)"><go href="#card5"/></do>   
    <p>
      Chinese, Latin uppercase, punctuation and numeric:
      <input type="text" name="input" format="*X"/>
    </p>  
    </card>
    
    <card id="card5" title="Card 5" >
    <do type="accept" name="continue" label="继续(Continue)"><go href="#card6"/></do>   
    <p>
      Chinese, Latin lowercase, punctuation and numeric:
      <input type="text" name="input" format="*x"/>
    </p>
    </card>
    
   <card id="card6" title="Card 6" >
    <do type="accept" name="continue" label="继续(Continue)"><go href="#card7"/></do>      
    <p>
      Chinese, Latin uppercase and lowercase, punctuation and numeric(default is uppercase):
      <input type="text" name="input" format="*M"/>
    </p> 
    </card>
    
    <card id="card7" title="Card 7" >
    <do type="accept" name="continue" label="继续(Continue)"><go href="#card8"/></do>        
    <p>
      Chinese, Latin uppercase and lowercase, punctuation and numeric(default is lowercase):
      <input type="text" name="input" format="*m"/>
    </p>
    </card>
    
   <card id="card8" title="Last Card" >
    <do type="accept" name="continue" label="继续(Continue)"><go href="#card1"/></do>          
    <p>
      4 characters(default is uppercase): 
      <input type="text" name="input" format="4M"/>
    </p> 
    </card>

     
</wml>
