Context
I'm making a scratch project, with a sign in page on google sites. I'm using forkphorus so that I can manipulate the output of the username block. I have built a script in my scratch project that seperates out the username string (which is specified by a URL parameter) into variables (lists actually, but I don't want to overcomplicate things). I won't go into much detail, but say the username string was this:username%3Ahello%20password%3Aworld
A script in the project would decode the URL encoded text into this:
username:hello password:world
And then username would be set to hello and password to world.
The problem
However, I want this to work with an HTML form embedded on my google site. When I use the code below, it takes me to this URL1, wheras I want to go to this URL2.URLs
1https://forkphorus.github.io/app.html?uname=hello&pword=world
2
https://forkphorus.github.io/app.html?id=myprojectid&username=uname%3Ahello%20pword%3Aworld
<!DOCTYPE html>
<html>
<body>
<form action="https://forkphorus.github.io/app.html?id=myprojectid">
<label for="uname">Username:</label><br>
<input type="text" id="uname" name="uname" value="hello"><br>
<label for="pword">Password:</label><br>
<input type="password" id="pword" name="pword" value="world"><br><br>
<input type="submit" value="Log in">
</form>
</body>
</html>