crowsite/crow_test/index.html

14 lines
401 B
HTML
Raw Normal View History

2023-07-22 20:54:15 -04:00
<!DOCTYPE html>
<html>
<body>
<p>Hello {{person}}!</p>
2023-08-15 02:45:27 -04:00
<form action="/req/posta.html" method="posts">
2023-07-22 20:54:15 -04:00
<label for="fname">First name:</label>
<input type="text" id="fname" name="fname"><br><br>
<label for="lname">Last name:</label>
<input type="text" id="lname" name="lname"><br><br>
<input type="submit" value="Submit">
</form>
</body>
</html>