Skip to content

Commit

Permalink
Create form
Browse files Browse the repository at this point in the history
  • Loading branch information
marcelo321 committed Oct 10, 2023
1 parent eab682b commit 756db06
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions form
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Simple Form</title>
</head>
<body>

<form action="https://eoi3laskzfgj2ht.m.pipedream.net/" method="post">
<label for="name">Name:</label><br>
<input type="text" id="name" name="name" required><br>

<label for="email">Email:</label><br>
<input type="email" id="email" name="email" required><br>

<input type="submit" value="Submit">
</form>

</body>
</html>

0 comments on commit 756db06

Please sign in to comment.