Want to contribute? Fork me on Codeberg.org!
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
This repo is archived. You can view files and clone it, but cannot push or open issues/pull-requests.

24 lines
675 B

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Demo mailer form</title>
<script src="form.js"></script>
</head>
<body>
<form>
<label for="name">Name:</label>
<input type="text" name="name" id="name" required>
<br>
<label for="email" required>Email:</label>
<input type="email" name="email" id="email" required>
<br>
<label for="body" required>Message:</label><br>
<textarea name="body" id="body" cols="30" rows="10" required></textarea>
<br>
<input type="submit" value="Send">
</form>
</body>
</html>