Forward users to a webpage upon hotspot logon?

Is it possible somehow to forward users to a webpage once they have logged into the hotspot service? The old network we used to operate used to forward users to an external webpage when they logged in that contained top-up links and hold network news. Now we have changed to MT a few users are struggling to find their way around. Is there an easy way to restore this feature using MT? Thanks. Jon

http://wiki.mikrotik.com/wiki/HotSpot_Redirect_to_external_login_page

To extend that link, here’s HTML that would redirect:

<html>
<head>
<meta http-equiv="refresh" content="0; url=http://my.redirect.server">
<meta http-equiv="pragma" content="no-cache">
<meta http-equiv="expires" content="-1">
</head>
<body>
</body>
</html>

Alternatively you can add a hidden field with name ‘dst’ and a value of the redirect URL to the form that POSTs to ‘/login’.