fork download
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <title>Registration</title>
  5. </head>
  6. <body>
  7. <div>
  8. <?php
  9. if (isset($_POST['create'])) {
  10. echo "user sbmitted";
  11. }
  12. ?>
  13. </div>
  14. <div>
  15. <form action="Registration.php" method="post">
  16. <div class="container">
  17. <h1>Registration</h1>
  18. <p>FILL WITH CORRECT VALUES</p>
  19. <label for="firstname">First Name</label>
  20. <input type="text" name="firstname" required>
  21. <label for="lastname">Last Name</label>
  22. <input type="text" name="lastname" required>
  23. <label for="email">Email</label>
  24. <input type="email" name="email" required>
  25. <label for="number">Number</label>
  26. <input type="text" name="number" required>
  27. <input type="button" name="create" value="Sign up">
  28. </div>
  29. </form>
  30.  
  31. </div>
  32.  
  33. </body>
  34. </html>
Success #stdin #stdout 0s 82560KB
stdin
Standard input is empty
stdout
<!DOCTYPE html>
<html>
<head>
	<title>Registration</title>
</head>
<body>
<div>
	</div>
	<div>
		<form action="Registration.php" method="post">
			<div class="container">
				<h1>Registration</h1>
				<p>FILL WITH CORRECT VALUES</p>
			<label for="firstname">First Name</label>
			<input type="text" name="firstname" required>
			<label for="lastname">Last Name</label>
			<input type="text" name="lastname" required>
			<label for="email">Email</label>
			<input type="email" name="email" required>
			<label for="number">Number</label>
			<input type="text" name="number" required>
			<input type="button" name="create" value="Sign up">
			</div>
		</form>

	</div>

</body>
</html>