Anyone good with WML?

I need some help on WML, it’s for a remote shutdown program that uses WAP (cellphone internet) to trigger the action, but the script that the program came with doesn’t work, the website the program came from doesn’t give support either. There’s only 3 files, so if someone can look at this, I’d appreciate it.

index.wml:

<?xml version="1.0"?>
 <!DOCTYPE wml PUBLIC "-//WAPFORUM//DTD WML 1.1//EN" "http://www.wapforum.org/DTD/wml_1.1.xml">
 <wml>
 <card id="Main" title="Switch Off">
 <p align="center"><b>==Switch Off==</b><br/>
 	<a href="action.wml?action=Shutdown&<!-- #AUTH# -->">ShutDown</a><br/>
 	<a href="action.wml?action=Restart&<!-- #AUTH# -->">Reboot</a><br/>
 	<a href="action.wml?action=Logoff&<!-- #AUTH# -->">Log Off</a><br/>
 	<a href="action.wml?action=Lock&<!-- #AUTH# -->">Lock</a><br/>
 	<a href="action.wml?action=Hangup&<!-- #AUTH# -->">Hangup</a><br/>
 	<a href="action.wml?action=Standby&<!-- #AUTH# -->">Standby</a><br/>
 	<a href="action.wml?action=Hibernate&<!-- #AUTH# -->">Hibernate</a><br/>
 	<a href="action.wml?action=Quit&<!-- #AUTH# -->">Quit</a><br/>
 </p>
 </card>
 </wml>
 

login.wml

<?xml version="1.0"?>
 <!DOCTYPE wml PUBLIC "-//WAPFORUM//DTD WML 1.1//EN" "http://www.wapforum.org/DTD/wml_1.1.xml">
 <wml>
 <card id="Login" title="Login">
 <p align="left">
 	<b>User</b><input name="FUser" value=""/><br/>
 	<b>Password</b><input name="FPassword" value="" type ="password"/><br/>
 <do type="accept" label="Ok">
 	<go href="<!-- #URL# -->" method="get">
 		<postfield name="User" value="$(FUser)"/>
 		<postfield name="Password" value="$(FPassword)"/>
 	</go>
 </do>
 </p>
 </card>
 </wml>

action.wml

<?xml version="1.0"?>
 <!DOCTYPE wml PUBLIC "-//WAPFORUM//DTD WML 1.1//EN" "http://www.wapforum.org/DTD/wml_1.1.xml">
 <wml>
 <card id="Main" title="Switch Off">
 <p align="center"><b>==Switch Off==</b><br/>
 <!-- #Message# --><br/>
 	<anchor title="Home">Home<go href="/?<!-- #AUTH# -->" method="get"></go></anchor><br/>
 </p>
 </card>
 </wml>