<!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