test netlify forms

This commit is contained in:
jumping283 2023-01-26 11:51:56 -08:00 committed by GitHub
parent edab61874b
commit f8c03cafbc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 17 additions and 0 deletions

17
form.html Normal file
View File

@ -0,0 +1,17 @@
<html>
<head>
<title>Form</title>
<link rel="stylesheet" href="/w3css/w3.css">
</head>
<body>
<form class="w3-display-center w3-animate-top" data-netlify="true" action="/maydo">
<label for="fname">First name:</label><br>
<input type="text" id="fname" name="fname" value="John"><br>
<label for="lname">Last name:</label><br>
<input type="text" id="lname" name="lname" value="Doe"><br><br>
<input type="submit" value="Submit">
</form>
</body>
</html>