DHCP server + HotSpot problem

hi all

i creats a DHCP server with ARP based on MAC address, to add every single MAC address for this server

and a HotSpot for every other client

everything run ok, every client got the correct ip range except one problem that the HotSpot login page appear for both !!

note: i used two interfaces connected to another main switch which collect all the network.

#
/interface pppoe-client
add add-default-route=yes disabled=no interface=ether10 max-mru=1480 max-mtu=\
    1480 mrru=1600 name=pppoe-out1 password=s5s5 user=siemens5
/ip dhcp-server
add add-arp=yes disabled=no interface=ether2 name=dhcp1
/ip hotspot profile
add dns-name=www.alitkan.com hotspot-address=10.10.0.1 login-by=http-chap \
    name=hsprof1
/ip pool
add name=dhcp_pool1 ranges=172.33.44.2-172.33.44.254
add name=hs-pool-3 ranges=10.10.0.2-10.10.0.254
/ip dhcp-server
add address-pool=hs-pool-3 disabled=no interface=ether3 lease-time=1h name=\
    dhcp2
/ip hotspot
add address-pool=hs-pool-3 addresses-per-mac=1 disabled=no interface=ether3 \
    name=hotspot1 profile=hsprof1
/ip address
add address=192.168.88.1/24 comment="default configuration" interface=ether1 \
    network=192.168.88.0
add address=172.33.44.1/24 interface=ether2 network=172.33.44.0
add address=10.10.0.1/24 interface=ether3 network=10.10.0.0
/ip dhcp-server lease
add address=dhcp_pool1 mac-address=74:E5:0B:AF:B8:28 server=dhcp1
add address=dhcp_pool1 mac-address=00:22:5F:A2:70:84 server=dhcp1
/ip dhcp-server network
add address=10.10.0.0/24 comment="hotspot network" gateway=10.10.0.1
add address=172.33.44.0/24 gateway=172.33.44.1
/ip dns
set servers=8.8.8.8
/ip firewall filter
add action=passthrough chain=unused-hs-chain comment=\
    "place hotspot rules here" disabled=yes
/ip firewall nat
add action=masquerade chain=srcnat
add action=passthrough chain=unused-hs-chain comment=\
    "place hotspot rules here" disabled=yes
add action=masquerade chain=srcnat comment="masquerade hotspot network" \
    src-address=10.10.0.0/24
/ip hotspot user
add name=admin password=admin
add name=user1 password=1
/system clock
set time-zone-name=Europe/Amsterdam
/tool romon port
set [ find default=yes ] cost=100 forbid=no interface=all secrets=""

Any help please ??