36616-vm/register.php
2025-12-03 12:17:22 +00:00

36 lines
1.4 KiB
PHP

<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Register - Studio RIT</title>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css" rel="stylesheet">
<link rel="stylesheet" href="assets/css/custom.css?v=<?php echo time(); ?>">
</head>
<body>
<main class="container">
<div class="logo">Studio RIT</div>
<h2>Create Your Account</h2>
<form action="start_game.php" method="POST" class="mt-4">
<div class="mb-3 text-start">
<label for="name" class="form-label">Name</label>
<input type="text" class="form-control" id="name" name="name" required>
</div>
<div class="mb-3 text-start">
<label for="usn" class="form-label">USN</label>
<input type="text" class="form-control" id="usn" name="usn" required>
</div>
<div class="mb-3 text-start">
<label for="mobile" class="form-label">Mobile Number</label>
<input type="tel" class="form-control" id="mobile" name="mobile" required>
</div>
<button type="submit" class="btn btn-primary btn-lg mt-3">Start Game</button>
</form>
</main>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/js/bootstrap.bundle.min.js"></script>
</body>
</html>