24 lines
431 B
PHP
24 lines
431 B
PHP
<?php
|
|
/*
|
|
require "../bootstrap.php";
|
|
*/
|
|
?>
|
|
|
|
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>Title</title>
|
|
</head>
|
|
<body>
|
|
|
|
|
|
<form action="../Backend/keyWordsRemaining.php" method="POST">
|
|
<input type="text" name="key_word" placeholder="key word">
|
|
<input type="number" name="group_id" placeholder="group id">
|
|
<input type="submit" name="submitKeyWord" value="Submit">
|
|
</form>
|
|
|
|
|
|
</body>
|
|
</html>
|