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.
30 lines
860 B
30 lines
860 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>
|
|
<link rel="stylesheet" href="style.css">
|
|
</head>
|
|
<body>
|
|
<h1>Includes</h1>
|
|
|
|
<?php require "header.php";?>
|
|
|
|
<h2>Zapsaní do Knihy návštěv</h2>
|
|
<form action="form.php" method="post">
|
|
<label for="bname">Jméno:</label>
|
|
<input type="text" name="bname" id="bname">
|
|
<br>
|
|
<label for="bmail">Email:</label>
|
|
<input type="email" name="bmail" id="bmail">
|
|
<br>
|
|
<label for="btext">Zpráva:</label>
|
|
<textarea name="btext" id="btext" cols="30" rows="10"></textarea>
|
|
<br>
|
|
<input type="submit" value="Zapsat do Knihy">
|
|
</form>
|
|
|
|
</body>
|
|
</html>
|