Example #1
0
<?php

include_once '../head.php';
if (!isset($_SESSION['logged_user'])) {
    header('location: ../login');
}
require_once '../helpers/database.php';
$database = new Database();
$authors = $database->getAllAuthors();
?>
<div class="container" style="margin-top: 30px; margin-bottom: 30px;">
    <form action="form.php" method="POST">
      
      <fieldset>
        <legend>Dodaj novi clanak:</legend>
        
        Naslov: <br>
        <input type="text" name="data[title]" required="required" placeholder="Naslov">

        <br><br>

        Tekst:<br>
        <textarea name="data[text]" required="required" placeholder="Email"> </textarea>

        <br><br>

        Slika: <br>
        <input type="text" name="data[image]" required="required" placeholder="Thumbnail">

        <br><br>