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.
22 lines
650 B
22 lines
650 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>Document</title>
|
|
</head>
|
|
<body>
|
|
<h1>Formulář</h1>
|
|
<h2><a href="/list.php">List</a></h2>
|
|
<form action="post.php" method="post">
|
|
<label for="name">Name</label>
|
|
<input type="text" id="name" name="name">
|
|
<br>
|
|
<label for="msg">Zpráva</label>
|
|
<textarea name="msg" id="msg" cols="30" rows="10"></textarea>
|
|
<br>
|
|
<input type="submit" value="Zapsat">
|
|
</form>
|
|
</body>
|
|
</html>
|