Skip to content

Instantly share code, notes, and snippets.

@naveenvm93
Created July 3, 2020 16:39
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 naveenvm93/c64ce394a153790e89e838fd6be1b84a to your computer and use it in GitHub Desktop.
Save naveenvm93/c64ce394a153790e89e838fd6be1b84a to your computer and use it in GitHub Desktop.
<!DOCTYPE html>
<html>
<body>
<h2>Sign Up Form</h2>
<form action="%%=RequestParameter('PAGEURL')=%%" method="POST">
<label for="fname">First name:</label><br>
<input type="text" id="fname" name="firstname" value=""><br><br>
<label for="lname">Last name:</label><br>
<input type="text" id="lname" name="lastname" value=""><br><br>
<label for="lname">Email:</label><br>
<input type="email" id="email" name="EmailAddress" value=""><br><br>
<input id="submitted" name="submitted" type="hidden" value="submitted">
<input type="submit" value="Submit">
</form>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment