86 lines
4.2 KiB
PHP
86 lines
4.2 KiB
PHP
<?php include('container/security.php');?>
|
|
<!DOCTYPE html>
|
|
<html lang="en" data-theme="light">
|
|
<head>
|
|
<!-- head links start -->
|
|
<?php include 'container/head_links.php';?>
|
|
<!-- head links start -->
|
|
</head>
|
|
<body>
|
|
<!-- side_bar start -->
|
|
<?php include 'container/side_bar.php' ?>
|
|
<!-- side_bar end -->
|
|
<main class="dashboard-main">
|
|
<!-- Header start -->
|
|
<?php include 'container/header.php' ?>
|
|
<div class="dashboard-main-body">
|
|
<div class="d-flex flex-wrap align-items-center justify-content-between gap-3 mb-24">
|
|
<h6 class="fw-semibold mb-0">Manage AI Tool Website CMS</h6>
|
|
<ul class="d-flex align-items-center gap-2">
|
|
<li class="fw-medium">
|
|
<a href="index-2.html" class="d-flex align-items-center gap-1 hover-text-primary">
|
|
<iconify-icon icon="solar:home-smile-angle-outline" class="icon text-lg"></iconify-icon>
|
|
Dashboard
|
|
</a>
|
|
</li>
|
|
<li>-</li>
|
|
<li class="fw-medium">Add Product</li>
|
|
</ul>
|
|
</div>
|
|
<div class="row gy-4">
|
|
<div class="col-md-12">
|
|
<div class="card">
|
|
<div class="card-header">
|
|
<h5 class="card-title mb-0">Contact Information</h5>
|
|
</div>
|
|
<div class="card-body">
|
|
<form action="" method="POST" enctype="multipart/form-data">
|
|
<div class="row gy-3">
|
|
<div class="col-6">
|
|
<label class="form-label">Email</label>
|
|
<input type="email" name="title" class="form-control" required placeholder="Enter Email Address">
|
|
</div>
|
|
<div class="col-6">
|
|
<label class="form-label">Phone Number</label>
|
|
<input type="number" name="cn_title" class="form-control" required placeholder="Enter Product CN Title">
|
|
</div>
|
|
<div class="col-6">
|
|
<label class="form-label">EN Short Description</label>
|
|
<textarea name="short_description" class="form-control" rows="3" maxlength="200" placeholder="Write EN Description" required></textarea>
|
|
</div>
|
|
<div class="col-6">
|
|
<label class="form-label">CN Short Description</label>
|
|
<textarea name="cn_short_description" class="form-control" rows="3" maxlength="200" placeholder="Write CN Description" required></textarea>
|
|
</div>
|
|
<div class="col-6">
|
|
<label class="form-label">EN Long Description (optional)</label>
|
|
<textarea name="long_description" class="form-control" rows="7" placeholder="Write EN Detailed Description"></textarea>
|
|
</div>
|
|
<div class="col-6">
|
|
<label class="form-label">CN Long Description (optional)</label>
|
|
<textarea name="cn_long_description" class="form-control" rows="7" placeholder="Write CN Detailed Description"></textarea>
|
|
</div>
|
|
<div class="col-12">
|
|
<button type="submit" class="btn btn-primary mt-3">Add Product</button>
|
|
</div>
|
|
</div>
|
|
</form>
|
|
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
|
|
|
|
<?php include 'container/footer.php' ?>
|
|
</main>
|
|
<!-- Footer Links Start -->
|
|
<?php include 'container/footer_links.php' ?>
|
|
</body>
|
|
</html>
|
|
|
|
|
|
|
|
|