21 lines
558 B
PHP
21 lines
558 B
PHP
|
<?php
|
||
|
require "../Backend/controller/accessControl.php";
|
||
|
//require "../Backend/controller/edit.php";//Bootstrap is require via this file
|
||
|
?>
|
||
|
<!DOCTYPE html>
|
||
|
<html lang="en">
|
||
|
<head>
|
||
|
<meta charset="UTF-8">
|
||
|
<title>Home</title>
|
||
|
</head>
|
||
|
<body>
|
||
|
<form action="../Backend/controller/update.php" method="POST">
|
||
|
<input type="number" name="id" hidden value="1">
|
||
|
<input type="text" name="upTitle" placeholder="Title">
|
||
|
<input type="text" name="upDescription" placeholder="Description">
|
||
|
<input type="submit" name="update">
|
||
|
</form>
|
||
|
</body>
|
||
|
</html>
|
||
|
|