<?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="data_container_for_adding">
        <div class="data_row">
            <h1>ADD NEW SERVICE</h1>
            <form action="save_service.php" method="post" id="news_form" class="form_class">
                    <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>
                    <button>ADD</button>
            </form>
        </div>
    </div>
</div>

<?php $html->html_end(); ?>