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.
51 lines
1.6 KiB
51 lines
1.6 KiB
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Document</title>
|
|
<link rel="stylesheet" href="css/bootstrap.min.css">
|
|
</head>
|
|
<body>
|
|
<div class="container">
|
|
<h1>Ukazka k php</h1>
|
|
<a href="/search.php" class="btn btn-primary">Vyhledavani</a>
|
|
<a href="/" class="btn btn-primary">Home</a>
|
|
<a href="/write.php" class="btn btn-primary">Write</a>
|
|
<br>
|
|
|
|
|
|
<form action="action_write.php" method="post">
|
|
|
|
<label for="">First name</label>
|
|
<input class="form-control" type="text" name="first_name" id="first_name">
|
|
|
|
<label for="">Last name</label>
|
|
<input class="form-control" type="text" name="last_name" id="last_name">
|
|
|
|
<label for="">Email</label>
|
|
<input class="form-control" type="text" name="email" id="email">
|
|
|
|
<label for="">Gender</label>
|
|
<input class="form-control" type="text" name="gender" id="gender">
|
|
|
|
<label for="">IP address</label>
|
|
<input class="form-control" type="text" name="ip_address" id="ip_address">
|
|
|
|
<label for="">Status</label>
|
|
<select class="form-select" size="4" name="status" id="status">
|
|
<option value="Available">Available</option>
|
|
<option value="busy">busy</option>
|
|
<option value="do not distrurb">do not distrurb</option>
|
|
<option value="offline">offline</option>
|
|
</select>
|
|
|
|
<input type="submit" value="Write" class="btn btn-primary">
|
|
|
|
|
|
</form>
|
|
|
|
</div>
|
|
<script src="js/bootstrap.bundle.js"></script>
|
|
</body>
|
|
</html>
|