48 lines
2.2 KiB
PHP
48 lines
2.2 KiB
PHP
<?php session_start(); ?>
|
|
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Ilook</title>
|
|
<meta name="description" content="Built with Flatlogic Generator">
|
|
<meta name="keywords" content="hidden object game, online game, multiplayer game, browser game, find items, puzzle game, interactive game, online party game, Flatlogic Generator">
|
|
<meta property="og:title" content="Ilook">
|
|
<meta property="og:description" content="Built with Flatlogic Generator">
|
|
<meta property="og:image" content="">
|
|
<meta name="twitter:card" content="summary_large_image">
|
|
<meta name="twitter:image" content="">
|
|
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/css/bootstrap.min.css" rel="stylesheet">
|
|
<link rel="stylesheet" href="assets/css/custom.css?v=<?php echo time(); ?>">
|
|
</head>
|
|
<body>
|
|
<div class="container">
|
|
<div class="text-center my-5">
|
|
<h1 class="display-4 fw-bold">Ilook</h1>
|
|
<p class="lead">The ultimate hidden object game.</p>
|
|
</div>
|
|
|
|
<div class="row justify-content-center">
|
|
<div class="col-md-5">
|
|
<div class="card">
|
|
<div class="card-body">
|
|
<h2 class="card-title text-center">Player Mode</h2>
|
|
<form id="player-form" action="player.php" method="post">
|
|
<div class="mb-3">
|
|
<label for="player-name" class="form-label">Your Name</label>
|
|
<input type="text" class="form-control" id="player-name" name="player_name" required>
|
|
</div>
|
|
<div class="d-grid">
|
|
<button type="submit" class="btn btn-primary">Start</button>
|
|
</div>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/js/bootstrap.bundle.min.js"></script>
|
|
<script src="assets/js/main.js?v=<?php echo time(); ?>"></script>
|
|
</body>
|
|
</html>
|