<!DOCTYPE html>
<html lang="ar">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>الوسيط - إعلانات جديدة</title>
    <link rel="stylesheet" href="styles.css">
</head>
<body>
    <!-- Header Section -->
    <header>
        <div class="logo">
            <img src="images/Untitled-1.png" alt="Logo">
        </div>
        <nav>
            <ul>
                <li><a href="index.html">الرئيسية</a></li>
                <li><a href="new-ad.html">إعلانات جديدة</a></li>
                <li><a href="#">الأقسام</a></li>
                <li><a href="#">تسجيل الدخول</a></li>
                <li><a href="#">تسجيل</a></li>
            </ul>
        </nav>
    </header>

    <!-- New Ad Form Section -->
    <section class="new-ad-form">
        <h2>نشر إعلان جديد</h2>
        <form>
            <!-- Ad Details Section -->
            <fieldset>
                <legend>تفاصيل الإعلان</legend>
                <label for="ad-type">نوع الإعلان:</label>
                <input type="radio" id="offer" name="ad-type" value="عرض">
                <label for="offer">عرض</label>
                <input type="radio" id="search" name="ad-type" value="طلب">
                <label for="search">طلب</label>

                <label for="title">عنوان:</label>
                <input type="text" id="title" name="title">

                <label for="category">فئة:</label>
                <select id="category" name="category">
                    <option value="الكترونيات">الكترونيات</option>
                    <option value="مركبات">مركبات</option>
                    <option value="عقارات">عقارات</option>
                    <option value="مستلزمات منزلية">مستلزمات منزلية</option>
                </select>

                <label for="price">السعر:</label>
                <input type="text" id="price" name="price">

                <label for="description">الوصف:</label>
                <textarea id="description" name="description"></textarea>

                <label for="images">الصور (اختياري):</label>
                <input type="file" id="images" name="images" accept="image/*">
            </fieldset>

            <!-- Location Section -->
            <fieldset>
                <legend>الموقع</legend>
                <label for="postal-code">الرمز البريدي:</label>
                <input type="text" id="postal-code" name="postal-code">

                <label for="city">المدينة:</label>
                <input type="text" id="city" name="city">

                <label for="full-address">
                    <input type="checkbox" id="full-address" name="full-address">
                    عرض العنوان الكامل
                </label>
            </fieldset>

            <!-- Contact Details Section -->
            <fieldset>
                <legend>معلومات الاتصال</legend>
                <label for="name">الاسم:</label>
                <input type="text" id="name" name="name">

                <label for="phone">رقم الهاتف (اختياري):</label>
                <input type="text" id="phone" name="phone">
            </fieldset>

            <!-- Publish Section -->
            <fieldset>
                <legend>نشر الإعلان</legend>
                <label for="terms">
                    <input type="checkbox" id="terms" name="terms">
                    أوافق على الشروط والأحكام
                </label>
                <button type="submit">نشر الإعلان</button>
            </fieldset>
        </form>
    </section>

    <!-- Footer Section -->
    <footer>
        <div class="footer-content">
            <p>&copy; 2024 الوسيط. جميع الحقوق محفوظة.</p>
            <nav>
                <ul>
                    <li><a href="#">عن الشركة</a></li>
                    <li><a href="#">سياسة الخصوصية</a></li>
                    <li><a href="#">الشروط والأحكام</a></li>
                    <li><a href="#">تواصل معنا</a></li>
                </ul>
            </nav>
        </div>
    </footer>
</body>
</html>

Sign In

Register

Reset Password

Please enter your username or email address, you will receive a link to create a new password via email.