<?php
include "classes/class.loader.php";
$html = new html();
$html->bacground_emoji();
$calls = new functions();
$db = new db();
$html->header();

?>
<style>
    body {
        background-color: #bebebee7;
        color: white;
    }
</style>



<div class="home_container">
    <div class="container_wide">
        <form action="save_breeder.php" method="post" id="news_form">
            <div class="container_wide" id="calendar_container" style="width:50vw">
                <label>NAME</label>
                <input type="text" id="name" name="name" value="">
                <br>
                <label>DESCRIPTION</label>
                <textarea id="description" name="description" rows="10"></textarea>
                <br>
                <label>PRICE</label>
                <input type="text" id="price" name="pruice" value="">
                <br><br>
                <input type="submit" value="ADD">
            </div>
        </form>

    </div>

</div>

<?php $html->html_end(); ?>