Anyway to replace the username and password field with a login Button that is on the hotspot login page? If so Got Code or html file
Thank you
Read the Hotspot manual…it’s in there.
couldnt find much help in the user manual. (big surprise)
http://www.mikrotik.com/docs/ros/2.8/ip/hotspot||0.5426290276589678
May be this helps you ![]()
i am in nedd of proper html code to replace the username and password box with a “login” button. All i want is for the hotspot users read the login.html page, agree to the terms , and click the login button
![]()
[quote=“kipel”]But how you identify users.
As I am not mistaken the meaning of hotspot is user autorization for networks security.
I want to setup this situation one year ago, and I failed.
But you can check documentation, maybe this feaure can help in your case.
http://www.mikrotik.com/docs/ros/2.9/ip/hotspot||0.27877604685445634
From hotspot manual:
To provide predefined value as username, in login.html change:
<input type="text" %input-user%>
to this line:
<input type="hidden" name="user" value="hsuser">
(where hsuser is the username you are providing)
To provide predefined value as password, in login.html change:
<input type="password" %input-password%>
to this line:
<input type="hidden" name="password" value="hspass">
(where hspass is the password you are providing)
Thank you normis! That looks like the answer i was looking for