form_matcher / public /form4.html
Francisco Santos
examples 3
b3bdcbf
raw
history blame contribute delete
No virus
406 Bytes
<!DOCTYPE html>
<html>
<head>
<title>Email Form</title>
</head>
<body>
<form action="/" method="POST">
<label for="name">Name:</label>
<input type="text" id="name" name="name" required>
<br>
<label for="email">Email:</label>
<input type="email" id="email" name="email" required>
<br>
<input type="submit" value="Submit">
</form>
</html>