Skip to content
Snippets Groups Projects
Code owners
Assign users and groups as approvers for specific file changes. Learn more.
formPost.html 440 B
<!doctype html>
<html>
    <head> 
        <meta charset="utf-8" /> 
		<title>Express Post Example</title>	
	</head>

	<body>
		<h1>Course Information Form (Using Post)</h1>
		<form action="http://localhost:7003/" method="post">
			<strong>Semester: </strong><input type="text" name="semester" />
			<strong>Teacher: </strong><input type="text" name="teacher" />
			<input type="submit" value="Submit Data" />
		</form>		
   </body>
</html>