parking_lot_website/unused/parking.html

26 lines
914 B
HTML
Executable File

<!DOCTYPE html>
<html>
<head>
<title>Parking Lot Database</title>
<link rel="stylesheet" href="https://cdn.simplecss.org/simple.min.css">
<!--<link rel="stylesheet" href="custom.css">-->
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta charset="utf-8">
</head>
<body>
<p>Welcome to the parking lot.</p>
<form action="entering.php" method="POST" id="entrance">
<input type="submit" value="Access parking lot">
</form>
<form action="data.php" method="POST">
<input type="submit" value="View available spots">
</form>
<form action="parking.php" method="POST">
<input type="text" id="space_num" name="space_num" legend="Ingrese el numero del que proviene">
<input type="submit" value="Exit parking lot">
</form>
</body>
</html>