31 lines
919 B
HTML
31 lines
919 B
HTML
<!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>Lab03 Task3</title>
|
|
</head>
|
|
<style>
|
|
.row {
|
|
margin-top: 10px;
|
|
margin-bottom: 10px;
|
|
}
|
|
</style>
|
|
<body>
|
|
<form action="Lab03_Task3.php" method="post">
|
|
<div class="row">
|
|
<h1>User Name and Year of Brith</h1>
|
|
</div>
|
|
<div class="row">
|
|
First Name: <input type="text" name="firstName" id="firstName"><br>
|
|
Last Name: <input type="text" name="lastName" id="lastName"><br>
|
|
Year of Birth: <input type="text" name="yearOfBirth" id="yearOfBirth">
|
|
</div>
|
|
<div class="row">
|
|
<input type="submit" value="Send">
|
|
<input type="reset" value="Cancel">
|
|
</div>
|
|
</form>
|
|
</body>
|
|
</html> |