Password
After received the submit it goes to submit card.
WMLHeader password.wml
_wml
_card "id='info'"
_do "type='accept' label='Submit'"
__go "href='#submit'"
do_
The _p command has the mode 'nowrap' which will not wrap a long line. Login has the input type 'text'. Password has the input type 'password' which will not dispaly the input text.
_p "mode='nowrap'"
quote "Login:"
__input "type='text' name='login'"
quote "Password"
__input "type='password' name='password'"
p_
card_
submit card will dispaly the login variable and password variable. The argument of quote command is included by {}, so the $(login) will not have an evaluation of the argument. This leaves it as a WML
variable. The $ has a later evaluation by the server.
_card "id='submit'"
_p "mode='nowrap'"
quote {Login: $(login)}
__br
quote {Password: $(password)}
p_
card_
wml_
|