Skip to content

Instantly share code, notes, and snippets.

@cozyplanes
Created December 3, 2017 04:59
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save cozyplanes/ef247018777e22dea8eef213c6f079e7 to your computer and use it in GitHub Desktop.
Save cozyplanes/ef247018777e22dea8eef213c6f079e7 to your computer and use it in GitHub Desktop.
<!DOCTYPE html>
<html>
<body>
<input type="text" id="username" />
<input type="text" id="subtext"/>
<br>
<button type="button" id="create">Create</button>
</body>
</html>
<script type="text/javascript">
var username = document.getElementById("username").value;
var subtext = document.getElementById("subtext").value;
var url = "https://devbanner.center/generate/banner?username="+username+"&subtext="+subtext;
document.getElementById("create").onclick = function () {
location.href = url;
};
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment