XF 1.5 Register URL

korhox

Member
Hello! Can i somehow get register URL? I need it to code plugin to my Minecraft server, i would to make register command what includes only password. IGN username will be taken automatically when user make command.

If I'm right, register URL is some kind of this:
Code:
mysite.com/register.php?username=user&password=pass
 
Last edited:
The correct URL format would be:
Code:
mysite.com/index.php?register&login=username

There's no way to pass a password in, though. The login parameter can either be a username or email address and it will be populated in the correct field automatically.
 
The correct URL format would be:
Code:
mysite.com/index.php?register&login=username

There's no way to pass a password in, though. The login parameter can either be a username or email address and it will be populated in the correct field automatically.
Are there any other URL shortcuts like this? How about passing the username but to the login form?
 
Top Bottom