encrypted-form/contact.html

27 lines
774 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Contact form</title>
</head>
<body>
<form action="contact.php" method="POST" name="myform" id="myform">
<fieldset>
<legend>Contact us</legend>
<label for="name">Name: </label><input type="text" id="name" name="name" required>
<label for="email">E-mail: </label><input type="email" id="email" name="_replyto" required>
<label for="message">Message:
</label><textarea id="message" name="message" rows="8" required></textarea>
</fieldset>
<br>
<input type="submit" value="Send" name="contactform">
</form>
</body>
</html>