フレッツ光プレミアムのCTU設定画面があまりにもいけてない件

光プレミアムが開通したんですがCTUの設定画面でFWの設定をしようとしたら、あまりに使いにくくて閉口・・・。
というわけで、どーでもいいんですが、簡単にログインできるHTMLに書き直しておきました。
下のHTMLをコピペしてデスクトップかどこかの html ファイルとして置いておけば、次から楽にログインできるはず・・・。

<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="ja" lang="ja">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>CTU INSTANT LOGIN</title>
</head>

<body>
<form method="post" action="https://ctu.fletsnet.com/CtuC101/login.do">
	<fieldset>
		<legend>CTU設定ログイン</legend> 
		
		<label for="userId">お客様ID</label>
		<input id="userId" name="userId" type="text" value="" />
		
		<label for="passWd">アクセスパスワード</label>
		<input id="passWd" name="passWd" type="password" />

		<input type="submit" name="btnLogin" value="ログイン" />
		
		<!-- 同意する というフラグを送信する -->
		<input type="hidden" name="C101_agreementFlg" value="1" /> 

		<!-- 意味不明だけどとりあえず送信 -->
		<input type="hidden" name="btnName" value="" />
	</fieldset>
</form>
</body>
</html>