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.
31 lines
964 B
31 lines
964 B
<?php
|
|
$title = "Formulář hodnocení webů"
|
|
?>
|
|
<!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><?php echo $title; ?></title>
|
|
</head>
|
|
<body>
|
|
<h1><?php echo $title; ?></h1>
|
|
|
|
<?php include("menu.php"); ?>
|
|
|
|
<form action="action_form.php" method="post">
|
|
<input type="text" name="name" id="name" placeholder="jméno webu"> <br>
|
|
<input type="email" name="email" id="email" placeholder="email hodnotícího"><br>
|
|
<label for="rate">Hodnoceni</label>
|
|
<input type="range" name="rate" id="rate" min="0" max="5" step="0.5"><br>
|
|
<textarea name="text" id="text" cols="30" rows="10" placeholder="zpráva"></textarea><br>
|
|
<input type="submit" value="Odeslat hodnocení">
|
|
</form>
|
|
|
|
<hr>
|
|
<div>
|
|
Škrabánek @ 2022y
|
|
</div>
|
|
</body>
|
|
</html>
|