mirror of
https://github.com/vyme-fr/MercuryCloud_Dashboard.git
synced 2026-01-18 16:47:30 +01:00
Add files
This commit is contained in:
1
.gitignore
vendored
Normal file
1
.gitignore
vendored
Normal file
@@ -0,0 +1 @@
|
||||
node_modules
|
||||
302
assets/js/pages/mc-product-create.js
Normal file
302
assets/js/pages/mc-product-create.js
Normal file
@@ -0,0 +1,302 @@
|
||||
async function postData(url = '', data = {}) {
|
||||
const response = await fetch(url, {
|
||||
method: 'POST',
|
||||
headers: {
|
||||
'Content-Type': 'application/json'
|
||||
},
|
||||
body: JSON.stringify(data)
|
||||
});
|
||||
return response.json()
|
||||
}
|
||||
|
||||
function getCookie(name) {
|
||||
const value = `; ${document.cookie}`;
|
||||
const parts = value.split(`; ${name}=`);
|
||||
if (parts.length === 2) return parts.pop().split(';').shift();
|
||||
}
|
||||
|
||||
function update_eggs() {
|
||||
if (document.getElementById("egg").value == 1) {
|
||||
document.getElementById("env_var").innerHTML = `
|
||||
<div class="form-group col-md-12">
|
||||
<label class="form-label" for="env_1">BUNGEE_VERSION :</label>
|
||||
<input type="text" class="form-control" id="env_1" value="latest">
|
||||
</div>
|
||||
<div class="form-group col-md-12">
|
||||
<label class="form-label" for="env_2">SERVER_JARFILE :</label>
|
||||
<input type="text" class="form-control" id="env_2" value="bungeecord.jar">
|
||||
</div>
|
||||
`
|
||||
}
|
||||
if (document.getElementById("egg").value == 2) {
|
||||
document.getElementById("env_var").innerHTML = `
|
||||
<div class="form-group col-md-12">
|
||||
<label class="form-label" for="env_2">SERVER_JARFILE :</label>
|
||||
<input type="text" class="form-control" id="env_1" value="server.jar">
|
||||
</div>
|
||||
<div class="form-group col-md-12">
|
||||
<label class="form-label" for="env_1">VANILLA_VERSION :</label>
|
||||
<input type="text" class="form-control" id="env_2" value="latest">
|
||||
</div>
|
||||
`
|
||||
}
|
||||
if (document.getElementById("egg").value == 3) {
|
||||
document.getElementById("env_var").innerHTML = `
|
||||
<div class="form-group col-md-12">
|
||||
<label class="form-label" for="env_1">MINECRAFT_VERSION :</label>
|
||||
<input type="text" class="form-control" id="env_1" value="latest">
|
||||
</div>
|
||||
<div class="form-group col-md-12">
|
||||
<label class="form-label" for="env_2">SERVER_JARFILE :</label>
|
||||
<input type="text" class="form-control" id="env_2" value="server.jar">
|
||||
</div>
|
||||
<div class="form-group col-md-12">
|
||||
<label class="form-label" for="env_3">DL_PATH :</label>
|
||||
<input type="text" class="form-control" id="env_3" value="">
|
||||
</div>
|
||||
<div class="form-group col-md-12">
|
||||
<label class="form-label" for="env_4">BUILD_NUMBER :</label>
|
||||
<input type="text" class="form-control" id="env_4" value="latest">
|
||||
</div>
|
||||
`
|
||||
}
|
||||
if (document.getElementById("egg").value == 4) {
|
||||
document.getElementById("env_var").innerHTML = `
|
||||
<div class="form-group col-md-12">
|
||||
<label class="form-label" for="env_1">SERVER_JARFILE :</label>
|
||||
<input type="text" class="form-control" id="env_1" value="server.jar">
|
||||
</div>
|
||||
<div class="form-group col-md-12">
|
||||
<label class="form-label" for="env_2">MC_VERSION :</label>
|
||||
<input type="text" class="form-control" id="env_2" value="latest">
|
||||
</div>
|
||||
<div class="form-group col-md-12">
|
||||
<label class="form-label" for="env_3">BUILD_TYPE :</label>
|
||||
<input type="text" class="form-control" id="env_3" value="recommended">
|
||||
</div>
|
||||
<div class="form-group col-md-12">
|
||||
<label class="form-label" for="env_4">FORGE_VERSION :</label>
|
||||
<input type="text" class="form-control" id="env_4" value="">
|
||||
</div>
|
||||
`
|
||||
}
|
||||
if (document.getElementById("egg").value == 5) {
|
||||
document.getElementById("env_var").innerHTML = `
|
||||
<div class="form-group col-md-12">
|
||||
<label class="form-label" for="env_1">SPONGE_VERSION :</label>
|
||||
<input type="text" class="form-control" id="env_1" value="1.12.2-7.3.0">
|
||||
</div>
|
||||
<div class="form-group col-md-12">
|
||||
<label class="form-label" for="env_2">SERVER_JARFILE :</label>
|
||||
<input type="text" class="form-control" id="env_2" value="server.jar">
|
||||
</div>
|
||||
`
|
||||
}
|
||||
if (document.getElementById("egg").value == 6) {
|
||||
document.getElementById("env_var").innerHTML = `
|
||||
<div class="form-group col-md-12">
|
||||
<label class="form-label" for="env_2">SERVER_JARFILE :</label>
|
||||
<input type="text" class="form-control" id="env_1" value="fabric-server-launch.jar">
|
||||
</div>
|
||||
<div class="form-group col-md-12">
|
||||
<label class="form-label" for="env_1">MC_VERSION :</label>
|
||||
<input type="text" class="form-control" id="env_2" value="latest">
|
||||
</div>
|
||||
<div class="form-group col-md-12">
|
||||
<label class="form-label" for="env_3">FABRIC_VERSION :</label>
|
||||
<input type="text" class="form-control" id="env_3" value="latest">
|
||||
</div>
|
||||
`
|
||||
}
|
||||
if (document.getElementById("egg").value == 7) {
|
||||
document.getElementById("env_var").innerHTML = `
|
||||
<div class="form-group col-md-12">
|
||||
<label class="form-label" for="env_1">BEDROCK_VERSION :</label>
|
||||
<input type="text" class="form-control" id="env_1" value="latest">
|
||||
</div>
|
||||
<div class="form-group col-md-12">
|
||||
<label class="form-label" for="env_2">LD_LIBRARY_PATH :</label>
|
||||
<input type="text" class="form-control" id="env_2" value=".">
|
||||
</div>
|
||||
<div class="form-group col-md-12">
|
||||
<label class="form-label" for="env_3">SERVERNAME :</label>
|
||||
<input type="text" class="form-control" id="env_3" value="Mercury Cloud Bedrock Server">
|
||||
</div>
|
||||
<div class="form-group col-md-12">
|
||||
<label class="form-label" for="env_4">GAMEMODE :</label>
|
||||
<input type="text" class="form-control" id="env_4" value="survival">
|
||||
</div>
|
||||
<div class="form-group col-md-12">
|
||||
<label class="form-label" for="env_5">DIFFICULTY :</label>
|
||||
<input type="text" class="form-control" id="env_5" value="normal">
|
||||
</div>
|
||||
<div class="form-group col-md-12">
|
||||
<label class="form-label" for="env_6">CHEATS :</label>
|
||||
<input type="text" class="form-control" id="env_6" value="false">
|
||||
</div>
|
||||
`
|
||||
}
|
||||
if (document.getElementById("egg").value == 8) {
|
||||
document.getElementById("env_var").innerHTML = `
|
||||
<div class="form-group col-md-12">
|
||||
<label class="form-label" for="env_1">GITHUB_PACKAGE :</label>
|
||||
<input type="text" class="form-control" id="env_1" value="pmmp/PocketMine-MP">
|
||||
</div>
|
||||
<div class="form-group col-md-12">
|
||||
<label class="form-label" for="env_2">MATCH :</label>
|
||||
<input type="text" class="form-control" id="env_2" value="PocketMine-MP.phar">
|
||||
</div>
|
||||
`
|
||||
}
|
||||
}
|
||||
|
||||
function create_product() {
|
||||
var ok = 0
|
||||
var no = 0
|
||||
if(document.getElementById('name').value.length > 0) {
|
||||
document.getElementById('name').classList.remove('is-invalid')
|
||||
document.getElementById('name').classList.add('is-valid')
|
||||
ok++
|
||||
} else {
|
||||
document.getElementById('name').classList.remove('is-valid')
|
||||
document.getElementById('name').classList.add('is-invalid')
|
||||
document.getElementById('name').value = ""
|
||||
no++
|
||||
}
|
||||
|
||||
if(document.getElementById('description').value.length > 0) {
|
||||
document.getElementById('description').classList.remove('is-invalid')
|
||||
document.getElementById('description').classList.add('is-valid')
|
||||
ok++
|
||||
} else {
|
||||
document.getElementById('description').classList.remove('is-valid')
|
||||
document.getElementById('description').classList.add('is-invalid')
|
||||
document.getElementById('description').value = ""
|
||||
no++
|
||||
}
|
||||
|
||||
if(document.getElementById('price').value.length > 0) {
|
||||
document.getElementById('price').classList.remove('is-invalid')
|
||||
document.getElementById('price').classList.add('is-valid')
|
||||
ok++
|
||||
} else {
|
||||
document.getElementById('price').classList.remove('is-valid')
|
||||
document.getElementById('price').classList.add('is-invalid')
|
||||
document.getElementById('price').value = ""
|
||||
no++
|
||||
}
|
||||
|
||||
if(document.getElementById('cpu').value.length > 0) {
|
||||
document.getElementById('cpu').classList.remove('is-invalid')
|
||||
document.getElementById('cpu').classList.add('is-valid')
|
||||
ok++
|
||||
} else {
|
||||
document.getElementById('cpu').classList.remove('is-valid')
|
||||
document.getElementById('cpu').classList.add('is-invalid')
|
||||
document.getElementById('cpu').value = ""
|
||||
no++
|
||||
}
|
||||
|
||||
if(document.getElementById('ram').value.length > 0) {
|
||||
document.getElementById('ram').classList.remove('is-invalid')
|
||||
document.getElementById('ram').classList.add('is-valid')
|
||||
ok++
|
||||
} else {
|
||||
document.getElementById('ram').classList.remove('is-valid')
|
||||
document.getElementById('ram').classList.add('is-invalid')
|
||||
document.getElementById('ram').value = ""
|
||||
no++
|
||||
}
|
||||
|
||||
if(document.getElementById('disk').value.length > 0) {
|
||||
document.getElementById('disk').classList.remove('is-invalid')
|
||||
document.getElementById('disk').classList.add('is-valid')
|
||||
ok++
|
||||
} else {
|
||||
document.getElementById('disk').classList.remove('is-valid')
|
||||
document.getElementById('disk').classList.add('is-invalid')
|
||||
document.getElementById('disk').value = ""
|
||||
no++
|
||||
}
|
||||
|
||||
if(document.getElementById('swap').value.length > 0) {
|
||||
document.getElementById('swap').classList.remove('is-invalid')
|
||||
document.getElementById('swap').classList.add('is-valid')
|
||||
ok++
|
||||
} else {
|
||||
document.getElementById('swap').classList.remove('is-valid')
|
||||
document.getElementById('swap').classList.add('is-invalid')
|
||||
document.getElementById('swap').value = ""
|
||||
no++
|
||||
}
|
||||
|
||||
if(document.getElementById('io').value.length > 0) {
|
||||
document.getElementById('io').classList.remove('is-invalid')
|
||||
document.getElementById('io').classList.add('is-valid')
|
||||
ok++
|
||||
} else {
|
||||
document.getElementById('io').classList.remove('is-valid')
|
||||
document.getElementById('io').classList.add('is-invalid')
|
||||
document.getElementById('io').value = ""
|
||||
no++
|
||||
}
|
||||
|
||||
if(document.getElementById('startup_command').value.length > 0) {
|
||||
document.getElementById('startup_command').classList.remove('is-invalid')
|
||||
document.getElementById('startup_command').classList.add('is-valid')
|
||||
ok++
|
||||
} else {
|
||||
document.getElementById('startup_command').classList.remove('is-valid')
|
||||
document.getElementById('startup_command').classList.add('is-invalid')
|
||||
document.getElementById('startup_command').value = ""
|
||||
no++
|
||||
}
|
||||
|
||||
|
||||
if(ok == 9 && no == 0) {
|
||||
|
||||
var env_var_count = 2
|
||||
var env_vars = []
|
||||
var env_vars_title = []
|
||||
var env_vars_json = `{`
|
||||
if (document.getElementById("egg").value == 1) {env_var_count = 2, env_vars_title = ['BUNGEE_VERSION', 'SERVER_JARFILE']}
|
||||
if (document.getElementById("egg").value == 2) {env_var_count = 2, env_vars_title = ['SERVER_JARFILE', 'VANILLA_VERSION']}
|
||||
if (document.getElementById("egg").value == 3) {env_var_count = 4, env_vars_title = ['MINECRAFT_VERSION', 'SERVER_JARFILE', 'DL_PATH', 'BUILD_NUMBER']}
|
||||
if (document.getElementById("egg").value == 4) {env_var_count = 4, env_vars_title = ['SERVER_JARFILE', 'MC_VERSION', 'BUILD_TYPE', 'FORGE_VERSION ']}
|
||||
if (document.getElementById("egg").value == 5) {env_var_count = 2, env_vars_title = ['SPONGE_VERSION', 'SERVER_JARFILE']}
|
||||
if (document.getElementById("egg").value == 6) {env_var_count = 3, env_vars_title = ['SERVER_JARFILE', 'MC_VERSION', 'FABRIC_VERSION']}
|
||||
if (document.getElementById("egg").value == 7) {env_var_count = 6, env_vars_title = ['BEDROCK_VERSION', 'LD_LIBRARY_PATH', 'SERVERNAME', 'GAMEMODE', 'DIFFICULTY', 'CHEATS']}
|
||||
if (document.getElementById("egg").value == 8) {env_var_count = 2, env_vars_title = ['GITHUB_PACKAGE', 'MATCH']}
|
||||
for(var i= 1; i < env_var_count + 1; i++) {
|
||||
env_vars.push(document.getElementById("env_" + i).value)
|
||||
}
|
||||
for(var i= 0; i < env_vars.length; i++) {
|
||||
env_vars_json = env_vars_json + `'${env_vars_title[i]}': '${env_vars[i]}'`
|
||||
if (i < env_vars.length - 1) {env_vars_json = env_vars_json + ','}
|
||||
if (i == env_vars.length - 1) {env_vars_json = env_vars_json + '}'}
|
||||
}
|
||||
body = {
|
||||
"name": document.getElementById("name").value,
|
||||
"description": document.getElementById("description").value,
|
||||
"price": document.getElementById("price").value,
|
||||
"cpu": document.getElementById("cpu").value,
|
||||
"cpu_pinning": document.getElementById("cpu_pinning").value,
|
||||
"ram": document.getElementById("ram").value,
|
||||
"disk": document.getElementById("disk").value,
|
||||
"swap": document.getElementById("swap").value,
|
||||
"io": document.getElementById("io").value,
|
||||
"egg": document.getElementById("egg").value,
|
||||
"startup_command": document.getElementById("startup_command").value,
|
||||
"env": env_vars_json
|
||||
}
|
||||
postData(`https://api.mercurycloud.fr/api/create-product?uuid=${getCookie("uuid")}&token=${getCookie("token")}`, body).then(data => {
|
||||
console.log(data)
|
||||
if (data.error == false) {
|
||||
window.location.replace("/dashboard/app/user-list.html")
|
||||
} else {
|
||||
console.log('[ERROR] ' + data);
|
||||
location.href = "../errors/error500.html";
|
||||
}
|
||||
})
|
||||
}
|
||||
}
|
||||
80
assets/js/pages/mc-products-list.js
Normal file
80
assets/js/pages/mc-products-list.js
Normal file
@@ -0,0 +1,80 @@
|
||||
function getCookie(name) {
|
||||
const value = `; ${document.cookie}`;
|
||||
const parts = value.split(`; ${name}=`);
|
||||
if (parts.length === 2) return parts.pop().split(';').shift();
|
||||
}
|
||||
|
||||
async function deleteData(url = '', data = {}) {
|
||||
const response = await fetch(url, {
|
||||
method: 'DELETE',
|
||||
headers: {
|
||||
'Content-Type': 'application/json'
|
||||
},
|
||||
body: JSON.stringify(data)
|
||||
});
|
||||
return response.json()
|
||||
}
|
||||
|
||||
fetch(`https://api.mercurycloud.fr/api/mc-products?uuid=${getCookie("uuid")}&token=${getCookie("token")}`)
|
||||
.then(function (response) {
|
||||
return response.json();
|
||||
})
|
||||
.then(function (myJson) {
|
||||
if (myJson.error === false) {
|
||||
list = ``
|
||||
for(var i= 0; i < myJson.products.length; i++) {
|
||||
list = list + `
|
||||
<tr>
|
||||
<td>${myJson.products[i].id}</td>
|
||||
<td>${myJson.products[i].name}</td>
|
||||
<td>${myJson.products[i].description}</td>
|
||||
<td>${myJson.products[i].price}€</td>
|
||||
<td><span class="badge bg-primary">Actif</span></td>
|
||||
<td>
|
||||
<div class="flex align-items-center list-user-action">
|
||||
<a class="btn btn-sm btn-icon btn-success" data-toggle="tooltip" data-placement="top" title="" data-original-title="Créer" href="#">
|
||||
<span class="btn-inner">
|
||||
<svg width="32" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path opacity="0.4" d="M16.6667 2H7.33333C3.92889 2 2 3.92889 2 7.33333V16.6667C2 20.0622 3.92 22 7.33333 22H16.6667C20.0711 22 22 20.0622 22 16.6667V7.33333C22 3.92889 20.0711 2 16.6667 2Z" fill="currentColor"></path>
|
||||
<path d="M15.3205 12.7083H12.7495V15.257C12.7495 15.6673 12.4139 16 12 16C11.5861 16 11.2505 15.6673 11.2505 15.257V12.7083H8.67955C8.29342 12.6687 8 12.3461 8 11.9613C8 11.5765 8.29342 11.2539 8.67955 11.2143H11.2424V8.67365C11.2824 8.29088 11.6078 8 11.996 8C12.3842 8 12.7095 8.29088 12.7495 8.67365V11.2143H15.3205C15.7066 11.2539 16 11.5765 16 11.9613C16 12.3461 15.7066 12.6687 15.3205 12.7083Z" fill="currentColor"></path>
|
||||
</svg>
|
||||
</span>
|
||||
</a>
|
||||
<a class="btn btn-sm btn-icon btn-warning" data-toggle="tooltip" data-placement="top" title="" data-original-title="Modifier" href="#">
|
||||
<span class="btn-inner">
|
||||
<svg width="32" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path opacity="0.4" d="M19.9927 18.9534H14.2984C13.7429 18.9534 13.291 19.4124 13.291 19.9767C13.291 20.5422 13.7429 21.0001 14.2984 21.0001H19.9927C20.5483 21.0001 21.0001 20.5422 21.0001 19.9767C21.0001 19.4124 20.5483 18.9534 19.9927 18.9534Z" fill="currentColor"></path>
|
||||
<path d="M10.309 6.90385L15.7049 11.2639C15.835 11.3682 15.8573 11.5596 15.7557 11.6929L9.35874 20.0282C8.95662 20.5431 8.36402 20.8344 7.72908 20.8452L4.23696 20.8882C4.05071 20.8903 3.88775 20.7613 3.84542 20.5764L3.05175 17.1258C2.91419 16.4915 3.05175 15.8358 3.45388 15.3306L9.88256 6.95545C9.98627 6.82108 10.1778 6.79743 10.309 6.90385Z" fill="currentColor"></path>
|
||||
<path opacity="0.4" d="M18.1208 8.66544L17.0806 9.96401C16.9758 10.0962 16.7874 10.1177 16.6573 10.0124C15.3927 8.98901 12.1545 6.36285 11.2561 5.63509C11.1249 5.52759 11.1069 5.33625 11.2127 5.20295L12.2159 3.95706C13.126 2.78534 14.7133 2.67784 15.9938 3.69906L17.4647 4.87078C18.0679 5.34377 18.47 5.96726 18.6076 6.62299C18.7663 7.3443 18.597 8.0527 18.1208 8.66544Z" fill="currentColor"></path>
|
||||
</svg>
|
||||
</span>
|
||||
</a>
|
||||
<a class="btn btn-sm btn-icon btn-danger" onclick="delete_product('${myJson.products[i].id}')" data-toggle="tooltip" data-placement="top" title="" data-original-title="Supprimer" href="#">
|
||||
<span class="btn-inner">
|
||||
<svg width="32" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path opacity="0.4" d="M19.643 9.48851C19.643 9.5565 19.11 16.2973 18.8056 19.1342C18.615 20.8751 17.4927 21.9311 15.8092 21.9611C14.5157 21.9901 13.2494 22.0001 12.0036 22.0001C10.6809 22.0001 9.38741 21.9901 8.13185 21.9611C6.50477 21.9221 5.38147 20.8451 5.20057 19.1342C4.88741 16.2873 4.36418 9.5565 4.35445 9.48851C4.34473 9.28351 4.41086 9.08852 4.54507 8.93053C4.67734 8.78453 4.86796 8.69653 5.06831 8.69653H18.9388C19.1382 8.69653 19.3191 8.78453 19.4621 8.93053C19.5953 9.08852 19.6624 9.28351 19.643 9.48851Z" fill="currentColor"></path>
|
||||
<path d="M21 5.97686C21 5.56588 20.6761 5.24389 20.2871 5.24389H17.3714C16.7781 5.24389 16.2627 4.8219 16.1304 4.22692L15.967 3.49795C15.7385 2.61698 14.9498 2 14.0647 2H9.93624C9.0415 2 8.26054 2.61698 8.02323 3.54595L7.87054 4.22792C7.7373 4.8219 7.22185 5.24389 6.62957 5.24389H3.71385C3.32386 5.24389 3 5.56588 3 5.97686V6.35685C3 6.75783 3.32386 7.08982 3.71385 7.08982H20.2871C20.6761 7.08982 21 6.75783 21 6.35685V5.97686Z" fill="currentColor"></path>
|
||||
</svg>
|
||||
</span>
|
||||
</a>
|
||||
</div>
|
||||
</td>
|
||||
</tr>`
|
||||
}
|
||||
document.getElementById("products-table").innerHTML = list
|
||||
} else {
|
||||
window.location.replace("/dashboard/errors/error500.html");
|
||||
}
|
||||
})
|
||||
|
||||
function delete_product(id) {
|
||||
deleteData(`https://api.mercurycloud.fr/api/delete-product?uuid=${getCookie("uuid")}&token=${getCookie("token")}`, {"id": id}).then(data => {
|
||||
console.log(data)
|
||||
if (data.error == false) {
|
||||
window.location.reload()
|
||||
} else {
|
||||
console.log('[ERROR] ' + data);
|
||||
location.href = "../errors/error500.html";
|
||||
}
|
||||
})
|
||||
}
|
||||
752
dashboard/products/create-mc-product.html
Normal file
752
dashboard/products/create-mc-product.html
Normal file
@@ -0,0 +1,752 @@
|
||||
|
||||
|
||||
<!doctype html>
|
||||
<html lang="en" dir="ltr">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
|
||||
<title>Mercury Cloud | Création produits Minecraft</title>
|
||||
|
||||
<!-- Favicon -->
|
||||
<link rel="shortcut icon" href="../../assets/images/favicon.ico" />
|
||||
|
||||
<!-- Library / Plugin Css Build -->
|
||||
<link rel="stylesheet" href="../../assets/css/core/libs.min.css" />
|
||||
|
||||
|
||||
<!-- Hope Ui Design System Css -->
|
||||
<link rel="stylesheet" href="../../assets/css/hope-ui.min.css?v=1.2.0" />
|
||||
|
||||
<!-- Custom Css -->
|
||||
<link rel="stylesheet" href="../../assets/css/custom.min.css?v=1.2.0" />
|
||||
|
||||
<!-- Dark Css -->
|
||||
<link rel="stylesheet" href="../../assets/css/dark.min.css"/>
|
||||
|
||||
<!-- Customizer Css -->
|
||||
<link rel="stylesheet" href="../../assets/css/customizer.min.css" />
|
||||
|
||||
<!-- RTL Css -->
|
||||
<link rel="stylesheet" href="../../assets/css/rtl.min.css"/>
|
||||
|
||||
</head>
|
||||
<body class=" ">
|
||||
<!-- loader Start -->
|
||||
<div id="loading">
|
||||
<div class="loader simple-loader">
|
||||
<div class="loader-body"></div>
|
||||
</div> </div>
|
||||
<!-- loader END -->
|
||||
|
||||
<aside class="sidebar sidebar-default navs-rounded-all ">
|
||||
<div class="sidebar-header d-flex align-items-center justify-content-start">
|
||||
<a href="../../dashboard/index.html" class="navbar-brand">
|
||||
<!--Logo start-->
|
||||
<svg width="30" class="" viewBox="0 0 30 30" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<rect x="-0.757324" y="19.2427" width="28" height="4" rx="2" transform="rotate(-45 -0.757324 19.2427)" fill="currentColor"/>
|
||||
<rect x="7.72803" y="27.728" width="28" height="4" rx="2" transform="rotate(-45 7.72803 27.728)" fill="currentColor"/>
|
||||
<rect x="10.5366" y="16.3945" width="16" height="4" rx="2" transform="rotate(45 10.5366 16.3945)" fill="currentColor"/>
|
||||
<rect x="10.5562" y="-0.556152" width="28" height="4" rx="2" transform="rotate(45 10.5562 -0.556152)" fill="currentColor"/>
|
||||
</svg>
|
||||
<!--logo End--> <h4 class="logo-title">Mercury Cloud</h4>
|
||||
</a>
|
||||
<div class="sidebar-toggle" data-toggle="sidebar" data-active="true">
|
||||
<i class="icon">
|
||||
<svg width="20" height="20" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M4.25 12.2744L19.25 12.2744" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"></path>
|
||||
<path d="M10.2998 18.2988L4.2498 12.2748L10.2998 6.24976" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"></path>
|
||||
</svg>
|
||||
</i>
|
||||
</div>
|
||||
</div>
|
||||
<div class="sidebar-body pt-0 data-scrollbar">
|
||||
<div class="sidebar-list">
|
||||
<!-- Sidebar Menu Start -->
|
||||
<ul class="navbar-nav iq-main-menu" id="sidebar-menu">
|
||||
<li class="nav-item static-item">
|
||||
<a class="nav-link static-item disabled" href="#" tabindex="-1">
|
||||
<span class="default-icon">Home</span>
|
||||
<span class="mini-icon">-</span>
|
||||
</a>
|
||||
</li>
|
||||
<li class="nav-item">
|
||||
<a class="nav-link " aria-current="page" href="../../dashboard/index.html">
|
||||
<i class="icon">
|
||||
<svg width="20" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path opacity="0.4" d="M16.0756 2H19.4616C20.8639 2 22.0001 3.14585 22.0001 4.55996V7.97452C22.0001 9.38864 20.8639 10.5345 19.4616 10.5345H16.0756C14.6734 10.5345 13.5371 9.38864 13.5371 7.97452V4.55996C13.5371 3.14585 14.6734 2 16.0756 2Z" fill="currentColor"></path>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M4.53852 2H7.92449C9.32676 2 10.463 3.14585 10.463 4.55996V7.97452C10.463 9.38864 9.32676 10.5345 7.92449 10.5345H4.53852C3.13626 10.5345 2 9.38864 2 7.97452V4.55996C2 3.14585 3.13626 2 4.53852 2ZM4.53852 13.4655H7.92449C9.32676 13.4655 10.463 14.6114 10.463 16.0255V19.44C10.463 20.8532 9.32676 22 7.92449 22H4.53852C3.13626 22 2 20.8532 2 19.44V16.0255C2 14.6114 3.13626 13.4655 4.53852 13.4655ZM19.4615 13.4655H16.0755C14.6732 13.4655 13.537 14.6114 13.537 16.0255V19.44C13.537 20.8532 14.6732 22 16.0755 22H19.4615C20.8637 22 22 20.8532 22 19.44V16.0255C22 14.6114 20.8637 13.4655 19.4615 13.4655Z" fill="currentColor"></path>
|
||||
</svg>
|
||||
</i>
|
||||
<span class="item-name">Dashboard</span>
|
||||
</a>
|
||||
</li>
|
||||
<li class="nav-item">
|
||||
<a class="nav-link " href="../../dashboard/form/form-wizard.html">
|
||||
<i class="icon">
|
||||
<svg width="20" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M14.1213 11.2331H16.8891C17.3088 11.2331 17.6386 10.8861 17.6386 10.4677C17.6386 10.0391 17.3088 9.70236 16.8891 9.70236H14.1213C13.7016 9.70236 13.3719 10.0391 13.3719 10.4677C13.3719 10.8861 13.7016 11.2331 14.1213 11.2331ZM20.1766 5.92749C20.7861 5.92749 21.1858 6.1418 21.5855 6.61123C21.9852 7.08067 22.0551 7.7542 21.9652 8.36549L21.0159 15.06C20.8361 16.3469 19.7569 17.2949 18.4879 17.2949H7.58639C6.25742 17.2949 5.15828 16.255 5.04837 14.908L4.12908 3.7834L2.62026 3.51807C2.22057 3.44664 1.94079 3.04864 2.01073 2.64043C2.08068 2.22305 2.47038 1.94649 2.88006 2.00874L5.2632 2.3751C5.60293 2.43735 5.85274 2.72207 5.88272 3.06905L6.07257 5.35499C6.10254 5.68257 6.36234 5.92749 6.68209 5.92749H20.1766ZM7.42631 18.9079C6.58697 18.9079 5.9075 19.6018 5.9075 20.459C5.9075 21.3061 6.58697 22 7.42631 22C8.25567 22 8.93514 21.3061 8.93514 20.459C8.93514 19.6018 8.25567 18.9079 7.42631 18.9079ZM18.6676 18.9079C17.8282 18.9079 17.1487 19.6018 17.1487 20.459C17.1487 21.3061 17.8282 22 18.6676 22C19.4969 22 20.1764 21.3061 20.1764 20.459C20.1764 19.6018 19.4969 18.9079 18.6676 18.9079Z" fill="currentColor"></path>
|
||||
</svg>
|
||||
</i>
|
||||
<i class="sidenav-mini-icon"> W </i>
|
||||
<span class="item-name">Commander</span>
|
||||
</a>
|
||||
</li>
|
||||
<li><hr class="hr-horizontal"></li>
|
||||
<li class="nav-item static-item">
|
||||
<a class="nav-link static-item disabled" href="#" tabindex="-1">
|
||||
<span class="default-icon">Admin</span>
|
||||
<span class="mini-icon">-</span>
|
||||
</a>
|
||||
</li>
|
||||
<li class="nav-item">
|
||||
<a class="nav-link" data-bs-toggle="collapse" href="#sidebar-user" role="button" aria-expanded="false" aria-controls="sidebar-user">
|
||||
<i class="icon">
|
||||
<svg width="20" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path opacity="0.4" d="M2 11.0786C2.05 13.4166 2.19 17.4156 2.21 17.8566C2.281 18.7996 2.642 19.7526 3.204 20.4246C3.986 21.3676 4.949 21.7886 6.292 21.7886C8.148 21.7986 10.194 21.7986 12.181 21.7986C14.176 21.7986 16.112 21.7986 17.747 21.7886C19.071 21.7886 20.064 21.3566 20.836 20.4246C21.398 19.7526 21.759 18.7896 21.81 17.8566C21.83 17.4856 21.93 13.1446 21.99 11.0786H2Z" fill="currentColor"></path> <path d="M11.2451 15.3843V16.6783C11.2451 17.0923 11.5811 17.4283 11.9951 17.4283C12.4091 17.4283 12.7451 17.0923 12.7451 16.6783V15.3843C12.7451 14.9703 12.4091 14.6343 11.9951 14.6343C11.5811 14.6343 11.2451 14.9703 11.2451 15.3843Z" fill="currentColor"></path> <path fill-rule="evenodd" clip-rule="evenodd" d="M10.211 14.5565C10.111 14.9195 9.762 15.1515 9.384 15.1015C6.833 14.7455 4.395 13.8405 2.337 12.4815C2.126 12.3435 2 12.1075 2 11.8555V8.38949C2 6.28949 3.712 4.58149 5.817 4.58149H7.784C7.972 3.12949 9.202 2.00049 10.704 2.00049H13.286C14.787 2.00049 16.018 3.12949 16.206 4.58149H18.183C20.282 4.58149 21.99 6.28949 21.99 8.38949V11.8555C21.99 12.1075 21.863 12.3425 21.654 12.4815C19.592 13.8465 17.144 14.7555 14.576 15.1105C14.541 15.1155 14.507 15.1175 14.473 15.1175C14.134 15.1175 13.831 14.8885 13.746 14.5525C13.544 13.7565 12.821 13.1995 11.99 13.1995C11.148 13.1995 10.433 13.7445 10.211 14.5565ZM13.286 3.50049H10.704C10.031 3.50049 9.469 3.96049 9.301 4.58149H14.688C14.52 3.96049 13.958 3.50049 13.286 3.50049Z" fill="currentColor">
|
||||
</path></svg>
|
||||
</i>
|
||||
<span class="item-name">Boutique</span>
|
||||
<i class="right-icon">
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="18" fill="none" viewBox="0 0 24 24" stroke="currentColor">
|
||||
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9 5l7 7-7 7" />
|
||||
</svg>
|
||||
</i>
|
||||
</a>
|
||||
<ul class="sub-nav collapse" id="sidebar-user" data-bs-parent="#sidebar-menu">
|
||||
<li class="nav-item">
|
||||
<a class="nav-link active" href="../../dashboard/products/mc-products-list.html">
|
||||
<i class="icon">
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="10" viewBox="0 0 24 24" fill="currentColor">
|
||||
<g>
|
||||
<circle cx="12" cy="12" r="8" fill="currentColor"></circle>
|
||||
</g>
|
||||
</svg>
|
||||
</i>
|
||||
<i class="sidenav-mini-icon"> U </i>
|
||||
<span class="item-name">Produits Minecraft</span>
|
||||
</a>
|
||||
</li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
<!-- Sidebar Menu End -->
|
||||
</div>
|
||||
</div>
|
||||
<div class="sidebar-footer"></div>
|
||||
</aside> <main class="main-content">
|
||||
<div class="position-relative iq-banner">
|
||||
<!--Nav Start-->
|
||||
<nav class="nav navbar navbar-expand-lg navbar-light iq-navbar">
|
||||
<div class="container-fluid navbar-inner">
|
||||
<a href="../../dashboard/index.html" class="navbar-brand">
|
||||
<!--Logo start-->
|
||||
<svg width="30" class="text-primary" viewBox="0 0 30 30" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<rect x="-0.757324" y="19.2427" width="28" height="4" rx="2" transform="rotate(-45 -0.757324 19.2427)" fill="currentColor"/>
|
||||
<rect x="7.72803" y="27.728" width="28" height="4" rx="2" transform="rotate(-45 7.72803 27.728)" fill="currentColor"/>
|
||||
<rect x="10.5366" y="16.3945" width="16" height="4" rx="2" transform="rotate(45 10.5366 16.3945)" fill="currentColor"/>
|
||||
<rect x="10.5562" y="-0.556152" width="28" height="4" rx="2" transform="rotate(45 10.5562 -0.556152)" fill="currentColor"/>
|
||||
</svg>
|
||||
<!--logo End--> <h4 class="logo-title">Mercury Cloud</h4>
|
||||
</a>
|
||||
<div class="sidebar-toggle" data-toggle="sidebar" data-active="true">
|
||||
<i class="icon">
|
||||
<svg width="20px" height="20px" viewBox="0 0 24 24">
|
||||
<path fill="currentColor" d="M4,11V13H16L10.5,18.5L11.92,19.92L19.84,12L11.92,4.08L10.5,5.5L16,11H4Z" />
|
||||
</svg>
|
||||
</i>
|
||||
</div>
|
||||
<div class="input-group search-input">
|
||||
<span class="input-group-text" id="search-input">
|
||||
<svg width="18" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<circle cx="11.7669" cy="11.7666" r="8.98856" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"></circle>
|
||||
<path d="M18.0186 18.4851L21.5426 22" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"></path>
|
||||
</svg>
|
||||
</span>
|
||||
<input type="search" class="form-control" placeholder="Search...">
|
||||
</div>
|
||||
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarSupportedContent" aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation">
|
||||
<span class="navbar-toggler-icon">
|
||||
<span class="mt-2 navbar-toggler-bar bar1"></span>
|
||||
<span class="navbar-toggler-bar bar2"></span>
|
||||
<span class="navbar-toggler-bar bar3"></span>
|
||||
</span>
|
||||
</button>
|
||||
<div class="collapse navbar-collapse" id="navbarSupportedContent">
|
||||
<ul class="mb-2 navbar-nav ms-auto align-items-center navbar-list mb-lg-0">
|
||||
<li class="nav-item dropdown">
|
||||
<a href="#" class="search-toggle nav-link" id="dropdownMenuButton2" data-bs-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
||||
<img src="../../assets/images/Flag/flag001.png" class="img-fluid rounded-circle" alt="user" style="height: 30px; min-width: 30px; width: 30px;">
|
||||
<span class="bg-primary"></span>
|
||||
</a>
|
||||
<div class="p-0 sub-drop dropdown-menu dropdown-menu-end" aria-labelledby="dropdownMenuButton2">
|
||||
<div class="m-0 border-0 shadow-none card">
|
||||
<div class="p-0 ">
|
||||
<ul class="p-0 list-group list-group-flush">
|
||||
<li class="iq-sub-card list-group-item"><a class="p-0" href="#"><img src="../../assets/images/Flag/flag-03.png" alt="img-flaf" class="img-fluid me-2" style="width: 15px;height: 15px;min-width: 15px;"/>Spanish</a></li>
|
||||
<li class="iq-sub-card list-group-item"><a class="p-0" href="#"><img src="../../assets/images/Flag/flag-04.png" alt="img-flaf" class="img-fluid me-2" style="width: 15px;height: 15px;min-width: 15px;"/>Italian</a></li>
|
||||
<li class="iq-sub-card list-group-item"><a class="p-0" href="#"><img src="../../assets/images/Flag/flag-02.png" alt="img-flaf" class="img-fluid me-2" style="width: 15px;height: 15px;min-width: 15px;"/>French</a></li>
|
||||
<li class="iq-sub-card list-group-item"><a class="p-0" href="#"><img src="../../assets/images/Flag/flag-05.png" alt="img-flaf" class="img-fluid me-2" style="width: 15px;height: 15px;min-width: 15px;"/>German</a></li>
|
||||
<li class="iq-sub-card list-group-item"><a class="p-0" href="#"><img src="../../assets/images/Flag/flag-06.png" alt="img-flaf" class="img-fluid me-2" style="width: 15px;height: 15px;min-width: 15px;"/>Japanese</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</li>
|
||||
<li class="nav-item dropdown">
|
||||
<a href="#" class="nav-link" id="notification-drop" data-bs-toggle="dropdown" >
|
||||
<svg width="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M19.7695 11.6453C19.039 10.7923 18.7071 10.0531 18.7071 8.79716V8.37013C18.7071 6.73354 18.3304 5.67907 17.5115 4.62459C16.2493 2.98699 14.1244 2 12.0442 2H11.9558C9.91935 2 7.86106 2.94167 6.577 4.5128C5.71333 5.58842 5.29293 6.68822 5.29293 8.37013V8.79716C5.29293 10.0531 4.98284 10.7923 4.23049 11.6453C3.67691 12.2738 3.5 13.0815 3.5 13.9557C3.5 14.8309 3.78723 15.6598 4.36367 16.3336C5.11602 17.1413 6.17846 17.6569 7.26375 17.7466C8.83505 17.9258 10.4063 17.9933 12.0005 17.9933C13.5937 17.9933 15.165 17.8805 16.7372 17.7466C17.8215 17.6569 18.884 17.1413 19.6363 16.3336C20.2118 15.6598 20.5 14.8309 20.5 13.9557C20.5 13.0815 20.3231 12.2738 19.7695 11.6453Z" fill="currentColor"></path>
|
||||
<path opacity="0.4" d="M14.0088 19.2283C13.5088 19.1215 10.4627 19.1215 9.96275 19.2283C9.53539 19.327 9.07324 19.5566 9.07324 20.0602C9.09809 20.5406 9.37935 20.9646 9.76895 21.2335L9.76795 21.2345C10.2718 21.6273 10.8632 21.877 11.4824 21.9667C11.8123 22.012 12.1482 22.01 12.4901 21.9667C13.1083 21.877 13.6997 21.6273 14.2036 21.2345L14.2026 21.2335C14.5922 20.9646 14.8734 20.5406 14.8983 20.0602C14.8983 19.5566 14.4361 19.327 14.0088 19.2283Z" fill="currentColor"></path>
|
||||
</svg>
|
||||
<span class="bg-danger dots"></span>
|
||||
</a>
|
||||
<div class="p-0 sub-drop dropdown-menu dropdown-menu-end" aria-labelledby="notification-drop">
|
||||
<div class="m-0 shadow-none card">
|
||||
<div class="py-3 card-header d-flex justify-content-between bg-primary">
|
||||
<div class="header-title">
|
||||
<h5 class="mb-0 text-white">All Notifications</h5>
|
||||
</div>
|
||||
</div>
|
||||
<div class="p-0 card-body">
|
||||
<a href="#" class="iq-sub-card">
|
||||
<div class="d-flex align-items-center">
|
||||
<img class="p-1 avatar-40 rounded-pill bg-soft-primary" src="../../assets/images/shapes/01.png" alt="">
|
||||
<div class="ms-3 w-100">
|
||||
<h6 class="mb-0 ">Emma Watson Bni</h6>
|
||||
<div class="d-flex justify-content-between align-items-center">
|
||||
<p class="mb-0">95 MB</p>
|
||||
<small class="float-end font-size-12">Just Now</small>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</a>
|
||||
<a href="#" class="iq-sub-card">
|
||||
<div class="d-flex align-items-center">
|
||||
<div class="">
|
||||
<img class="p-1 avatar-40 rounded-pill bg-soft-primary" src="../../assets/images/shapes/02.png" alt="">
|
||||
</div>
|
||||
<div class="ms-3 w-100">
|
||||
<h6 class="mb-0 ">New customer is join</h6>
|
||||
<div class="d-flex justify-content-between align-items-center">
|
||||
<p class="mb-0">Cyst Bni</p>
|
||||
<small class="float-end font-size-12">5 days ago</small>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</a>
|
||||
<a href="#" class="iq-sub-card">
|
||||
<div class="d-flex align-items-center">
|
||||
<img class="p-1 avatar-40 rounded-pill bg-soft-primary" src="../../assets/images/shapes/03.png" alt="">
|
||||
<div class="ms-3 w-100">
|
||||
<h6 class="mb-0 ">Two customer is left</h6>
|
||||
<div class="d-flex justify-content-between align-items-center">
|
||||
<p class="mb-0">Cyst Bni</p>
|
||||
<small class="float-end font-size-12">2 days ago</small>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</a>
|
||||
<a href="#" class="iq-sub-card">
|
||||
<div class="d-flex align-items-center">
|
||||
<img class="p-1 avatar-40 rounded-pill bg-soft-primary" src="../../assets/images/shapes/04.png" alt="">
|
||||
<div class="w-100 ms-3">
|
||||
<h6 class="mb-0 ">New Mail from Fenny</h6>
|
||||
<div class="d-flex justify-content-between align-items-center">
|
||||
<p class="mb-0">Cyst Bni</p>
|
||||
<small class="float-end font-size-12">3 days ago</small>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</li>
|
||||
<li class="nav-item dropdown">
|
||||
<a href="#" class="nav-link" id="mail-drop" data-bs-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
||||
<svg width="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path opacity="0.4" d="M22 15.94C22 18.73 19.76 20.99 16.97 21H16.96H7.05C4.27 21 2 18.75 2 15.96V15.95C2 15.95 2.006 11.524 2.014 9.298C2.015 8.88 2.495 8.646 2.822 8.906C5.198 10.791 9.447 14.228 9.5 14.273C10.21 14.842 11.11 15.163 12.03 15.163C12.95 15.163 13.85 14.842 14.56 14.262C14.613 14.227 18.767 10.893 21.179 8.977C21.507 8.716 21.989 8.95 21.99 9.367C22 11.576 22 15.94 22 15.94Z" fill="currentColor"></path>
|
||||
<path d="M21.4759 5.67351C20.6099 4.04151 18.9059 2.99951 17.0299 2.99951H7.04988C5.17388 2.99951 3.46988 4.04151 2.60388 5.67351C2.40988 6.03851 2.50188 6.49351 2.82488 6.75151L10.2499 12.6905C10.7699 13.1105 11.3999 13.3195 12.0299 13.3195C12.0339 13.3195 12.0369 13.3195 12.0399 13.3195C12.0429 13.3195 12.0469 13.3195 12.0499 13.3195C12.6799 13.3195 13.3099 13.1105 13.8299 12.6905L21.2549 6.75151C21.5779 6.49351 21.6699 6.03851 21.4759 5.67351Z" fill="currentColor"></path>
|
||||
</svg>
|
||||
<span class="bg-primary count-mail"></span>
|
||||
</a>
|
||||
<div class="p-0 sub-drop dropdown-menu dropdown-menu-end" aria-labelledby="mail-drop">
|
||||
<div class="m-0 shadow-none card">
|
||||
<div class="py-3 card-header d-flex justify-content-between bg-primary">
|
||||
<div class="header-title">
|
||||
<h5 class="mb-0 text-white">All Message</h5>
|
||||
</div>
|
||||
</div>
|
||||
<div class="p-0 card-body ">
|
||||
<a href="#" class="iq-sub-card">
|
||||
<div class="d-flex align-items-center">
|
||||
<div class="">
|
||||
<img class="p-1 avatar-40 rounded-pill bg-soft-primary" src="../../assets/images/shapes/01.png" alt="">
|
||||
</div>
|
||||
<div class="ms-3">
|
||||
<h6 class="mb-0 ">Bni Emma Watson</h6>
|
||||
<small class="float-start font-size-12">13 Jun</small>
|
||||
</div>
|
||||
</div>
|
||||
</a>
|
||||
<a href="#" class="iq-sub-card">
|
||||
<div class="d-flex align-items-center">
|
||||
<div class="">
|
||||
<img class="p-1 avatar-40 rounded-pill bg-soft-primary" src="../../assets/images/shapes/02.png" alt="">
|
||||
</div>
|
||||
<div class="ms-3">
|
||||
<h6 class="mb-0 ">Lorem Ipsum Watson</h6>
|
||||
<small class="float-start font-size-12">20 Apr</small>
|
||||
</div>
|
||||
</div>
|
||||
</a>
|
||||
<a href="#" class="iq-sub-card">
|
||||
<div class="d-flex align-items-center">
|
||||
<div class="">
|
||||
<img class="p-1 avatar-40 rounded-pill bg-soft-primary" src="../../assets/images/shapes/03.png" alt="">
|
||||
</div>
|
||||
<div class="ms-3">
|
||||
<h6 class="mb-0 ">Why do we use it?</h6>
|
||||
<small class="float-start font-size-12">30 Jun</small>
|
||||
</div>
|
||||
</div>
|
||||
</a>
|
||||
<a href="#" class="iq-sub-card">
|
||||
<div class="d-flex align-items-center">
|
||||
<div class="">
|
||||
<img class="p-1 avatar-40 rounded-pill bg-soft-primary" src="../../assets/images/shapes/04.png" alt="">
|
||||
</div>
|
||||
<div class="ms-3">
|
||||
<h6 class="mb-0 ">Variations Passages</h6>
|
||||
<small class="float-start font-size-12">12 Sep</small>
|
||||
</div>
|
||||
</div>
|
||||
</a>
|
||||
<a href="#" class="iq-sub-card">
|
||||
<div class="d-flex align-items-center">
|
||||
<div class="">
|
||||
<img class="p-1 avatar-40 rounded-pill bg-soft-primary" src="../../assets/images/shapes/05.png" alt="">
|
||||
</div>
|
||||
<div class="ms-3">
|
||||
<h6 class="mb-0 ">Lorem Ipsum generators</h6>
|
||||
<small class="float-start font-size-12">5 Dec</small>
|
||||
</div>
|
||||
</div>
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</li>
|
||||
<li class="nav-item dropdown">
|
||||
<a class="py-0 nav-link d-flex align-items-center" href="#" id="navbarDropdown" role="button" data-bs-toggle="dropdown" aria-expanded="false">
|
||||
<img src="../../assets/images/avatars/01.png" alt="User-Profile" class="theme-color-default-img img-fluid avatar avatar-50 avatar-rounded">
|
||||
<img src="../../assets/images/avatars/avtar_1.png" alt="User-Profile" class="theme-color-purple-img img-fluid avatar avatar-50 avatar-rounded">
|
||||
<img src="../../assets/images/avatars/avtar_2.png" alt="User-Profile" class="theme-color-blue-img img-fluid avatar avatar-50 avatar-rounded">
|
||||
<img src="../../assets/images/avatars/avtar_4.png" alt="User-Profile" class="theme-color-green-img img-fluid avatar avatar-50 avatar-rounded">
|
||||
<img src="../../assets/images/avatars/avtar_5.png" alt="User-Profile" class="theme-color-yellow-img img-fluid avatar avatar-50 avatar-rounded">
|
||||
<img src="../../assets/images/avatars/avtar_3.png" alt="User-Profile" class="theme-color-pink-img img-fluid avatar avatar-50 avatar-rounded">
|
||||
<div class="caption ms-3 d-none d-md-block ">
|
||||
<h6 class="mb-0 caption-title">Austin Robertson</h6>
|
||||
<p class="mb-0 caption-sub-title">Marketing Administrator</p>
|
||||
</div>
|
||||
</a>
|
||||
<ul class="dropdown-menu dropdown-menu-end" aria-labelledby="navbarDropdown">
|
||||
<li><a class="dropdown-item" href="../../dashboard/app/user-profile.html">Profile</a></li>
|
||||
<li><a class="dropdown-item" href="../../dashboard/app/user-privacy-setting.html">Privacy Setting</a></li>
|
||||
<li><hr class="dropdown-divider"></li>
|
||||
<li><a class="dropdown-item" href="../../dashboard/auth/sign-in.html">Logout</a></li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</nav> <!-- Nav Header Component Start -->
|
||||
<div class="iq-navbar-header" style="height: 215px;">
|
||||
<div class="container-fluid iq-container">
|
||||
<div class="row">
|
||||
<div class="col-md-12">
|
||||
<div class="flex-wrap d-flex justify-content-between align-items-center">
|
||||
<div>
|
||||
<h1>Hello Devs!</h1>
|
||||
<p>We are on a mission to help developers like you build successful projects for FREE.</p>
|
||||
</div>
|
||||
<div>
|
||||
<a href="" class="btn btn-link btn-soft-light">
|
||||
<svg width="20" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M11.8251 15.2171H12.1748C14.0987 15.2171 15.731 13.985 16.3054 12.2764C16.3887 12.0276 16.1979 11.7713 15.9334 11.7713H14.8562C14.5133 11.7713 14.2362 11.4977 14.2362 11.16C14.2362 10.8213 14.5133 10.5467 14.8562 10.5467H15.9005C16.2463 10.5467 16.5263 10.2703 16.5263 9.92875C16.5263 9.58722 16.2463 9.31075 15.9005 9.31075H14.8562C14.5133 9.31075 14.2362 9.03619 14.2362 8.69849C14.2362 8.35984 14.5133 8.08528 14.8562 8.08528H15.9005C16.2463 8.08528 16.5263 7.8088 16.5263 7.46728C16.5263 7.12575 16.2463 6.84928 15.9005 6.84928H14.8562C14.5133 6.84928 14.2362 6.57472 14.2362 6.23606C14.2362 5.89837 14.5133 5.62381 14.8562 5.62381H15.9886C16.2483 5.62381 16.4343 5.3789 16.3645 5.13113C15.8501 3.32401 14.1694 2 12.1748 2H11.8251C9.42172 2 7.47363 3.92287 7.47363 6.29729V10.9198C7.47363 13.2933 9.42172 15.2171 11.8251 15.2171Z" fill="currentColor"></path>
|
||||
<path opacity="0.4" d="M19.5313 9.82568C18.9966 9.82568 18.5626 10.2533 18.5626 10.7823C18.5626 14.3554 15.6186 17.2627 12.0005 17.2627C8.38136 17.2627 5.43743 14.3554 5.43743 10.7823C5.43743 10.2533 5.00345 9.82568 4.46872 9.82568C3.93398 9.82568 3.5 10.2533 3.5 10.7823C3.5 15.0873 6.79945 18.6413 11.0318 19.1186V21.0434C11.0318 21.5715 11.4648 22.0001 12.0005 22.0001C12.5352 22.0001 12.9692 21.5715 12.9692 21.0434V19.1186C17.2006 18.6413 20.5 15.0873 20.5 10.7823C20.5 10.2533 20.066 9.82568 19.5313 9.82568Z" fill="currentColor"></path>
|
||||
</svg>
|
||||
Announcements
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="iq-header-img">
|
||||
<img src="../../assets/images/dashboard/top-header.png" alt="header" class="theme-color-default-img img-fluid w-100 h-100 animated-scaleX">
|
||||
<img src="../../assets/images/dashboard/top-header1.png" alt="header" class="theme-color-purple-img img-fluid w-100 h-100 animated-scaleX">
|
||||
<img src="../../assets/images/dashboard/top-header2.png" alt="header" class="theme-color-blue-img img-fluid w-100 h-100 animated-scaleX">
|
||||
<img src="../../assets/images/dashboard/top-header3.png" alt="header" class="theme-color-green-img img-fluid w-100 h-100 animated-scaleX">
|
||||
<img src="../../assets/images/dashboard/top-header4.png" alt="header" class="theme-color-yellow-img img-fluid w-100 h-100 animated-scaleX">
|
||||
<img src="../../assets/images/dashboard/top-header5.png" alt="header" class="theme-color-pink-img img-fluid w-100 h-100 animated-scaleX">
|
||||
</div>
|
||||
</div> <!-- Nav Header Component End -->
|
||||
<!--Nav End-->
|
||||
</div>
|
||||
<div class="conatiner-fluid content-inner mt-n5 py-0">
|
||||
<div>
|
||||
<div class="row">
|
||||
<div class="col-xl-3 col-lg-4">
|
||||
<div class="card">
|
||||
<div class="card-header d-flex justify-content-between">
|
||||
<div class="header-title">
|
||||
<h4 class="card-title">Créer un nouveau produit Minecraft</h4>
|
||||
</div>
|
||||
</div>
|
||||
<div class="card-body">
|
||||
<form>
|
||||
<div class="form-group">
|
||||
<div class="profile-img-edit position-relative">
|
||||
<img src="../../assets/images/avatars/01.png" alt="profile-pic" class="theme-color-default-img profile-pic rounded avatar-100">
|
||||
<img src="../../assets/images/avatars/avtar_1.png" alt="profile-pic" class="theme-color-purple-img profile-pic rounded avatar-100">
|
||||
<img src="../../assets/images/avatars/avtar_2.png" alt="profile-pic" class="theme-color-blue-img profile-pic rounded avatar-100">
|
||||
<img src="../../assets/images/avatars/avtar_4.png" alt="profile-pic" class="theme-color-green-img profile-pic rounded avatar-100">
|
||||
<img src="../../assets/images/avatars/avtar_5.png" alt="profile-pic" class="theme-color-yellow-img profile-pic rounded avatar-100">
|
||||
<img src="../../assets/images/avatars/avtar_3.png" alt="profile-pic" class="theme-color-pink-img profile-pic rounded avatar-100">
|
||||
<div class="upload-icone bg-primary">
|
||||
<svg class="upload-button" width="14" height="14" viewBox="0 0 24 24">
|
||||
<path fill="#ffffff" d="M14.06,9L15,9.94L5.92,19H5V18.08L14.06,9M17.66,3C17.41,3 17.15,3.1 16.96,3.29L15.13,5.12L18.88,8.87L20.71,7.04C21.1,6.65 21.1,6 20.71,5.63L18.37,3.29C18.17,3.09 17.92,3 17.66,3M14.06,6.19L3,17.25V21H6.75L17.81,9.94L14.06,6.19Z" />
|
||||
</svg>
|
||||
<input class="file-upload" type="file" accept="image/*">
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label class="form-label" for="name">Nom :</label>
|
||||
<input type="text" class="form-control" id="name" placeholder="Nom">
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label class="form-label" for="desc">Description :</label>
|
||||
<input type="text" class="form-control" id="description" placeholder="Description">
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label class="form-label" for="price">Prix :</label>
|
||||
<input type="number" min="0.01" step="0.01" class="form-control" id="price" placeholder="Prix">
|
||||
</div>
|
||||
</form>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-xl-9 col-lg-8">
|
||||
<div class="card">
|
||||
<div class="card-header d-flex justify-content-between">
|
||||
<div class="header-title">
|
||||
<h4 class="card-title">Information sur le produit</h4>
|
||||
</div>
|
||||
</div>
|
||||
<div class="card-body">
|
||||
<div class="new-user-info">
|
||||
<div class="row">
|
||||
<div class="form-group col-md-6">
|
||||
<label class="form-label" for="cpu">CPU :</label>
|
||||
<input type="number" min="1" step="1" class="form-control" id="cpu" placeholder="CPU (%)">
|
||||
</div>
|
||||
<div class="form-group col-md-6">
|
||||
<label class="form-label" for="cpu_pinning">Pinning CPU :</label>
|
||||
<input type="number" min="1" step="1" class="form-control" id="cpu_pinning" placeholder="Pinning CPU (ex : 1,2,3)">
|
||||
</div>
|
||||
<div class="form-group col-md-6">
|
||||
<label class="form-label" for="ram">RAM :</label>
|
||||
<input type="number" min="1" step="1" class="form-control" id="ram" placeholder="RAM (Mo)">
|
||||
</div>
|
||||
<div class="form-group col-md-6">
|
||||
<label class="form-label" for="disk">Disque :</label>
|
||||
<input type="number" min="1" step="1" class="form-control" id="disk" placeholder="Disque (Mo)">
|
||||
</div>
|
||||
<div class="form-group col-md-6">
|
||||
<label class="form-label" for="swap">Swap :</label>
|
||||
<input type="number" min="1" step="1" class="form-control" id="swap" placeholder="Swap (Mo)">
|
||||
</div>
|
||||
<div class="form-group col-md-6">
|
||||
<label class="form-label" for="io">IO :</label>
|
||||
<input type="number" min="1" step="1" class="form-control" id="io" placeholder="IO (10-1000)">
|
||||
</div>
|
||||
<div class="form-group col-sm-6">
|
||||
<label class="form-label">Egg :</label>
|
||||
<select name="type" onchange="update_eggs()" class="selectpicker form-control" id="egg" data-style="py-0">
|
||||
<option value="1">Bungeecord</option>
|
||||
<option value="2">Vanilla</option>
|
||||
<option value="3">Paper</option>
|
||||
<option value="4">Forge</option>
|
||||
<option value="5">Sponge</option>
|
||||
<option value="6">Fabric</option>
|
||||
<option value="7">Vanilla Bedrock</option>
|
||||
<option value="8">PocketmineMP</option>
|
||||
</select>
|
||||
</div>
|
||||
<div class="form-group col-md-6">
|
||||
<label class="form-label" for="startup_command">Commande de démarrage :</label>
|
||||
<input type="text" class="form-control" id="startup_command" value="java -Xms128M -Xmx{{SERVER_MEMORY}}M -jar {{SERVER_JARFILE}}">
|
||||
</div>
|
||||
<hr>
|
||||
<p>Variables d'environement</p>
|
||||
<div id="env_var">
|
||||
<div class="form-group col-md-12">
|
||||
<label class="form-label" for="env_1">BUNGEE_VERSION :</label>
|
||||
<input type="text" class="form-control" id="env_1" value="latest">
|
||||
</div>
|
||||
<div class="form-group col-md-12">
|
||||
<label class="form-label" for="env_2">SERVER_JARFILE :</label>
|
||||
<input type="text" class="form-control" id="env_2" value="bungeecord.jar">
|
||||
</div>
|
||||
</div>
|
||||
<button onclick="create_product()" class="btn btn-primary">Ajouter</button>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="btn-download">
|
||||
<a class="btn btn-danger px-3 py-2" href="https://iqonic.design/product/admin-templates/hope-ui-admin-free-open-source-bootstrap-admin-template/" target="_blank" >
|
||||
<svg width="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path opacity="0.4" fill-rule="evenodd" clip-rule="evenodd" d="M5.91064 20.5886C5.91064 19.7486 6.59064 19.0686 7.43064 19.0686C8.26064 19.0686 8.94064 19.7486 8.94064 20.5886C8.94064 21.4186 8.26064 22.0986 7.43064 22.0986C6.59064 22.0986 5.91064 21.4186 5.91064 20.5886ZM17.1606 20.5886C17.1606 19.7486 17.8406 19.0686 18.6806 19.0686C19.5106 19.0686 20.1906 19.7486 20.1906 20.5886C20.1906 21.4186 19.5106 22.0986 18.6806 22.0986C17.8406 22.0986 17.1606 21.4186 17.1606 20.5886Z" fill="currentColor"></path>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M20.1907 6.34909C20.8007 6.34909 21.2007 6.55909 21.6007 7.01909C22.0007 7.47909 22.0707 8.13909 21.9807 8.73809L21.0307 15.2981C20.8507 16.5591 19.7707 17.4881 18.5007 17.4881H7.59074C6.26074 17.4881 5.16074 16.4681 5.05074 15.1491L4.13074 4.24809L2.62074 3.98809C2.22074 3.91809 1.94074 3.52809 2.01074 3.12809C2.08074 2.71809 2.47074 2.44809 2.88074 2.50809L5.26574 2.86809C5.60574 2.92909 5.85574 3.20809 5.88574 3.54809L6.07574 5.78809C6.10574 6.10909 6.36574 6.34909 6.68574 6.34909H20.1907ZM14.1307 11.5481H16.9007C17.3207 11.5481 17.6507 11.2081 17.6507 10.7981C17.6507 10.3781 17.3207 10.0481 16.9007 10.0481H14.1307C13.7107 10.0481 13.3807 10.3781 13.3807 10.7981C13.3807 11.2081 13.7107 11.5481 14.1307 11.5481Z" fill="currentColor"></path>
|
||||
</svg>
|
||||
</a>
|
||||
</div>
|
||||
|
||||
</main>
|
||||
<a class="btn btn-fixed-end btn-warning btn-icon btn-setting" data-bs-toggle="offcanvas" data-bs-target="#offcanvasExample" role="button" aria-controls="offcanvasExample">
|
||||
<svg width="24" viewBox="0 0 24 24" class="animated-rotate" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M20.8064 7.62361L20.184 6.54352C19.6574 5.6296 18.4905 5.31432 17.5753 5.83872V5.83872C17.1397 6.09534 16.6198 6.16815 16.1305 6.04109C15.6411 5.91402 15.2224 5.59752 14.9666 5.16137C14.8021 4.88415 14.7137 4.56839 14.7103 4.24604V4.24604C14.7251 3.72922 14.5302 3.2284 14.1698 2.85767C13.8094 2.48694 13.3143 2.27786 12.7973 2.27808H11.5433C11.0367 2.27807 10.5511 2.47991 10.1938 2.83895C9.83644 3.19798 9.63693 3.68459 9.63937 4.19112V4.19112C9.62435 5.23693 8.77224 6.07681 7.72632 6.0767C7.40397 6.07336 7.08821 5.98494 6.81099 5.82041V5.82041C5.89582 5.29601 4.72887 5.61129 4.20229 6.52522L3.5341 7.62361C3.00817 8.53639 3.31916 9.70261 4.22975 10.2323V10.2323C4.82166 10.574 5.18629 11.2056 5.18629 11.8891C5.18629 12.5725 4.82166 13.2041 4.22975 13.5458V13.5458C3.32031 14.0719 3.00898 15.2353 3.5341 16.1454V16.1454L4.16568 17.2346C4.4124 17.6798 4.82636 18.0083 5.31595 18.1474C5.80554 18.2866 6.3304 18.2249 6.77438 17.976V17.976C7.21084 17.7213 7.73094 17.6516 8.2191 17.7822C8.70725 17.9128 9.12299 18.233 9.37392 18.6717C9.53845 18.9489 9.62686 19.2646 9.63021 19.587V19.587C9.63021 20.6435 10.4867 21.5 11.5433 21.5H12.7973C13.8502 21.5001 14.7053 20.6491 14.7103 19.5962V19.5962C14.7079 19.088 14.9086 18.6 15.2679 18.2407C15.6272 17.8814 16.1152 17.6807 16.6233 17.6831C16.9449 17.6917 17.2594 17.7798 17.5387 17.9394V17.9394C18.4515 18.4653 19.6177 18.1544 20.1474 17.2438V17.2438L20.8064 16.1454C21.0615 15.7075 21.1315 15.186 21.001 14.6964C20.8704 14.2067 20.55 13.7894 20.1108 13.5367V13.5367C19.6715 13.284 19.3511 12.8666 19.2206 12.3769C19.09 11.8873 19.16 11.3658 19.4151 10.928C19.581 10.6383 19.8211 10.3982 20.1108 10.2323V10.2323C21.0159 9.70289 21.3262 8.54349 20.8064 7.63277V7.63277V7.62361Z" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"></path>
|
||||
<circle cx="12.1747" cy="11.8891" r="2.63616" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"></circle>
|
||||
</svg>
|
||||
</a>
|
||||
<!-- Wrapper End-->
|
||||
<!-- offcanvas start -->
|
||||
<div class="offcanvas offcanvas-end" tabindex="-1" id="offcanvasExample" data-bs-scroll="true" data-bs-backdrop="true" aria-labelledby="offcanvasExampleLabel">
|
||||
<div class="offcanvas-header">
|
||||
<div class="d-flex align-items-center">
|
||||
<h3 class="offcanvas-title me-3" id="offcanvasExampleLabel">Settings</h3>
|
||||
</div>
|
||||
<button type="button" class="btn-close text-reset" data-bs-dismiss="offcanvas" aria-label="Close"></button>
|
||||
</div>
|
||||
<div class="offcanvas-body data-scrollbar">
|
||||
<div class="row">
|
||||
<div class="col-lg-12">
|
||||
<h5 class="mb-3">Scheme</h5>
|
||||
<div class="d-grid gap-x-3 grid-cols-3 mb-4">
|
||||
<div class="btn-border" data-setting="color-mode" data-name="color" data-value="auto">
|
||||
<svg width="20" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path fill="currentColor" d="M7,2V13H10V22L17,10H13L17,2H7Z" />
|
||||
</svg>
|
||||
<span class="ms-2 "> Auto </span>
|
||||
</div>
|
||||
<div class="btn-border" data-setting="color-mode" data-name="color" data-value="dark">
|
||||
<svg width="20" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path fill="currentColor" d="M9,2C7.95,2 6.95,2.16 6,2.46C10.06,3.73 13,7.5 13,12C13,16.5 10.06,20.27 6,21.54C6.95,21.84 7.95,22 9,22A10,10 0 0,0 19,12A10,10 0 0,0 9,2Z" />
|
||||
</svg>
|
||||
<span class="ms-2 "> Dark </span>
|
||||
</div>
|
||||
<div class="btn-border active" data-setting="color-mode" data-name="color" data-value="light">
|
||||
<svg width="20" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path fill="currentColor" d="M12,8A4,4 0 0,0 8,12A4,4 0 0,0 12,16A4,4 0 0,0 16,12A4,4 0 0,0 12,8M12,18A6,6 0 0,1 6,12A6,6 0 0,1 12,6A6,6 0 0,1 18,12A6,6 0 0,1 12,18M20,8.69V4H15.31L12,0.69L8.69,4H4V8.69L0.69,12L4,15.31V20H8.69L12,23.31L15.31,20H20V15.31L23.31,12L20,8.69Z" />
|
||||
</svg>
|
||||
<span class="ms-2 "> Light</span>
|
||||
</div>
|
||||
</div>
|
||||
<hr class="hr-horizontal">
|
||||
<div class="d-flex align-items-center justify-content-between">
|
||||
<h5 class="mt-4 mb-3">Color Customizer</h5>
|
||||
<button class="btn btn-transparent p-0" data-value="theme-color-default" data-info="#079aa2" data-setting="color-mode1" data-name="color" data-bs-toggle="tooltip" data-bs-placement="top" title="" data-bs-original-title="Default">
|
||||
<svg width="18" height="18" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M21.4799 12.2424C21.7557 12.2326 21.9886 12.4482 21.9852 12.7241C21.9595 14.8075 21.2975 16.8392 20.0799 18.5506C18.7652 20.3986 16.8748 21.7718 14.6964 22.4612C12.518 23.1505 10.1711 23.1183 8.01299 22.3694C5.85488 21.6205 4.00382 20.196 2.74167 18.3126C1.47952 16.4293 0.875433 14.1905 1.02139 11.937C1.16734 9.68346 2.05534 7.53876 3.55018 5.82945C5.04501 4.12014 7.06478 2.93987 9.30193 2.46835C11.5391 1.99683 13.8711 2.2599 15.9428 3.2175L16.7558 1.91838C16.9822 1.55679 17.5282 1.62643 17.6565 2.03324L18.8635 5.85986C18.945 6.11851 18.8055 6.39505 18.549 6.48314L14.6564 7.82007C14.2314 7.96603 13.8445 7.52091 14.0483 7.12042L14.6828 5.87345C13.1977 5.18699 11.526 4.9984 9.92231 5.33642C8.31859 5.67443 6.8707 6.52052 5.79911 7.74586C4.72753 8.97119 4.09095 10.5086 3.98633 12.1241C3.8817 13.7395 4.31474 15.3445 5.21953 16.6945C6.12431 18.0446 7.45126 19.0658 8.99832 19.6027C10.5454 20.1395 12.2278 20.1626 13.7894 19.6684C15.351 19.1743 16.7062 18.1899 17.6486 16.8652C18.4937 15.6773 18.9654 14.2742 19.0113 12.8307C19.0201 12.5545 19.2341 12.3223 19.5103 12.3125L21.4799 12.2424Z" fill="#31BAF1"/>
|
||||
<path d="M20.0941 18.5594C21.3117 16.848 21.9736 14.8163 21.9993 12.7329C22.0027 12.4569 21.7699 12.2413 21.4941 12.2512L19.5244 12.3213C19.2482 12.3311 19.0342 12.5633 19.0254 12.8395C18.9796 14.283 18.5078 15.6861 17.6628 16.8739C16.7203 18.1986 15.3651 19.183 13.8035 19.6772C12.2419 20.1714 10.5595 20.1483 9.01246 19.6114C7.4654 19.0746 6.13845 18.0534 5.23367 16.7033C4.66562 15.8557 4.28352 14.9076 4.10367 13.9196C4.00935 18.0934 6.49194 21.37 10.008 22.6416C10.697 22.8908 11.4336 22.9852 12.1652 22.9465C13.075 22.8983 13.8508 22.742 14.7105 22.4699C16.8889 21.7805 18.7794 20.4073 20.0941 18.5594Z" fill="#0169CA"/>
|
||||
</svg>
|
||||
</button>
|
||||
</div>
|
||||
<div class="grid-cols-5 mb-4 d-grid gap-x-2">
|
||||
<div class="btn-border" data-value="theme-color-blue" data-info="#573BFF" data-setting="color-mode1" data-name="color" data-bs-toggle="tooltip" data-bs-placement="top" title="" data-bs-original-title="Theme-1">
|
||||
<svg class="customizer-btn" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="32" height="32"> <circle cx="12" cy="12" r="10" fill="#00C3F9" /> <path d="M2,12 a1,1 1 1,0 20,0" fill="#573BFF" /></svg>
|
||||
</div>
|
||||
<div class="btn-border" data-value="theme-color-gray" data-info="#FD8D00" data-setting="color-mode1" data-name="color" data-bs-toggle="tooltip" data-bs-placement="top" title="" data-bs-original-title="Theme-2">
|
||||
<svg class="customizer-btn" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="32" height="32"> <circle cx="12" cy="12" r="10" fill="#91969E" /> <path d="M2,12 a1,1 1 1,0 20,0" fill="#FD8D00" /></svg>
|
||||
</div>
|
||||
<div class="btn-border" data-value="theme-color-red" data-info="#366AF0" data-setting="color-mode1" data-name="color" data-bs-toggle="tooltip" data-bs-placement="top" title="" data-bs-original-title="Theme-3">
|
||||
<svg class="customizer-btn" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="32" height="32"> <circle cx="12" cy="12" r="10" fill="#DB5363" /> <path d="M2,12 a1,1 1 1,0 20,0" fill="#366AF0" /></svg>
|
||||
</div>
|
||||
<div class="btn-border" data-value="theme-color-yellow" data-info="#6410F1" data-setting="color-mode1" data-name="color" data-bs-toggle="tooltip" data-bs-placement="top" title="" data-bs-original-title="Theme-4">
|
||||
<svg class="customizer-btn" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="32" height="32"> <circle cx="12" cy="12" r="10" fill="#EA6A12" /> <path d="M2,12 a1,1 1 1,0 20,0" fill="#6410F1" /></svg>
|
||||
</div>
|
||||
<div class="btn-border" data-value="theme-color-pink" data-info="#25C799" data-setting="color-mode1" data-name="color" data-bs-toggle="tooltip" data-bs-placement="top" title="" data-bs-original-title="Theme-5">
|
||||
<svg class="customizer-btn" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="32" height="32"> <circle cx="12" cy="12" r="10" fill="#E586B3" /> <path d="M2,12 a1,1 1 1,0 20,0" fill="#25C799" /></svg>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
<hr class="hr-horizontal">
|
||||
<h5 class="mb-3 mt-4">Scheme Direction</h5>
|
||||
<div class="d-grid gap-x-3 grid-cols-2 mb-4">
|
||||
<div class="text-center">
|
||||
<img src="../../assets/images/settings/dark/01.png" alt="ltr" class="mode dark-img img-fluid btn-border p-0 flex-column active" data-setting="dir-mode" data-name="dir" data-value="ltr">
|
||||
<img src="../../assets/images/settings/light/01.png" alt="ltr" class="mode light-img img-fluid btn-border p-0 flex-column active" data-setting="dir-mode" data-name="dir" data-value="ltr">
|
||||
<span class=" mt-2"> LTR </span>
|
||||
</div>
|
||||
<div class="text-center">
|
||||
<img src="../../assets/images/settings/dark/02.png" alt="" class="mode dark-img img-fluid btn-border p-0 flex-column" data-setting="dir-mode" data-name="dir" data-value="rtl">
|
||||
<img src="../../assets/images/settings/light/02.png" alt="" class="mode light-img img-fluid btn-border p-0 flex-column" data-setting="dir-mode" data-name="dir" data-value="rtl">
|
||||
<span class="mt-2 "> RTL </span>
|
||||
</div>
|
||||
</div>
|
||||
<hr class="hr-horizontal">
|
||||
<h5 class="mt-4 mb-3">Sidebar Color</h5>
|
||||
<div class="d-grid gap-x-3 grid-cols-2 mb-4">
|
||||
<div class="btn btn-border mb-4" data-setting="sidebar" data-name="sidebar-color" data-value="sidebar-dark">
|
||||
<i class="text-dark">
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="18" viewBox="0 0 24 24" fill="currentColor">
|
||||
<circle cx="12" cy="12" r="8" fill="currentColor"></circle>
|
||||
</svg>
|
||||
</i>
|
||||
<span class="ms-2 "> Dark </span>
|
||||
</div>
|
||||
<div class="btn btn-border mb-4" data-setting="sidebar" data-name="sidebar-color" data-value="sidebar-color">
|
||||
<i class="text-primary">
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="18" viewBox="0 0 24 24" fill="currentColor">
|
||||
<circle cx="12" cy="12" r="8" fill="currentColor"></circle>
|
||||
</svg>
|
||||
</i>
|
||||
<span class="ms-2 "> Color </span>
|
||||
</div>
|
||||
<div class="btn btn-border active" data-setting="sidebar" data-name="sidebar-color" data-value="sidebar-white">
|
||||
<i class="text-white">
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="18" viewBox="0 0 24 24" fill="currentColor">
|
||||
<circle cx="12" cy="12" r="8" fill="currentColor" stroke="black" stroke-width="3"></circle>
|
||||
</svg>
|
||||
</i>
|
||||
<span class="ms-2 "> White </span>
|
||||
</div>
|
||||
<div class="btn btn-border " data-setting="sidebar" data-name="sidebar-color" data-value="sidebar-transparent">
|
||||
<i class="text-body">
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="18" viewBox="0 0 24 24" fill="currentColor">
|
||||
<circle cx="12" cy="12" r="8" fill="#F5F6FA" stroke="black" stroke-width="3"></circle>
|
||||
</svg>
|
||||
</i>
|
||||
<span class="ms-2 "> Transparent </span>
|
||||
</div>
|
||||
</div>
|
||||
<hr class="hr-horizontal">
|
||||
<h5 class="mt-4 mb-3">Sidebar Types</h5>
|
||||
<div class="d-grid gap-x-3 grid-cols-3 mb-4">
|
||||
<div class="text-center">
|
||||
<img src="../../assets/images/settings/dark/03.png" alt="mini" class="mode dark-img img-fluid btn-border p-0 flex-column" data-setting="sidebar" data-name="sidebar-type" data-value="sidebar-mini">
|
||||
<img src="../../assets/images/settings/light/03.png" alt="mini" class="mode light-img img-fluid btn-border p-0 flex-column" data-setting="sidebar" data-name="sidebar-type" data-value="sidebar-mini">
|
||||
<span class="mt-2">Mini</span>
|
||||
</div>
|
||||
<div class="text-center">
|
||||
<img src="../../assets/images/settings/dark/04.png" alt="hover" class="mode dark-img img-fluid btn-border p-0 flex-column" data-setting="sidebar" data-name="sidebar-type" data-value="sidebar-hover" data-extra-value="sidebar-mini">
|
||||
<img src="../../assets/images/settings/light/04.png" alt="hover" class="mode light-img img-fluid btn-border p-0 flex-column" data-setting="sidebar" data-name="sidebar-type" data-value="sidebar-hover" data-extra-value="sidebar-mini">
|
||||
<span class="mt-2">Hover</span>
|
||||
</div>
|
||||
<div class="text-center">
|
||||
<img src="../../assets/images/settings/dark/05.png" alt="boxed" class="mode dark-img img-fluid btn-border p-0 flex-column" data-setting="sidebar" data-name="sidebar-type" data-value="sidebar-boxed">
|
||||
<img src="../../assets/images/settings/light/05.png" alt="boxed" class="mode light-img img-fluid btn-border p-0 flex-column" data-setting="sidebar" data-name="sidebar-type" data-value="sidebar-boxed">
|
||||
<span class="mt-2">Boxed</span>
|
||||
</div>
|
||||
</div>
|
||||
<hr class="hr-horizontal">
|
||||
<h5 class="mt-4 mb-3">Sidebar Active Style</h5>
|
||||
<div class="d-grid gap-x-3 grid-cols-2 mb-4">
|
||||
<div class="mb-4 text-center">
|
||||
<img src="../../assets/images/settings/dark/06.png" alt="rounded-one-side" class="mode dark-img img-fluid btn-border p-0 flex-column" data-setting="sidebar" data-name="sidebar-item" data-value="navs-rounded">
|
||||
<img src="../../assets/images/settings/light/06.png" alt="rounded-one-side" class="mode light-img img-fluid btn-border p-0 flex-column" data-setting="sidebar" data-name="sidebar-item" data-value="navs-rounded">
|
||||
<span class="mt-2">Rounded One Side</span>
|
||||
</div>
|
||||
<div class="mb-4 text-center">
|
||||
<img src="../../assets/images/settings/dark/07.png" alt="rounded-all" class="mode dark-img img-fluid btn-border p-0 flex-column active" data-setting="sidebar" data-name="sidebar-item" data-value="navs-rounded-all">
|
||||
<img src="../../assets/images/settings/light/07.png" alt="rounded-all" class="mode light-img img-fluid btn-border p-0 flex-column active" data-setting="sidebar" data-name="sidebar-item" data-value="navs-rounded-all">
|
||||
<span class="mt-2">Rounded All</span>
|
||||
</div>
|
||||
<div class="mb-4 text-center">
|
||||
<img src="../../assets/images/settings/dark/08.png" alt="pill-one-side" class="mode dark-img img-fluid btn-border p-0 flex-column" data-setting="sidebar" data-name="sidebar-item" data-value="navs-pill">
|
||||
<img src="../../assets/images/settings/light/09.png" alt="pill-one-side" class="mode light-img img-fluid btn-border p-0 flex-column" data-setting="sidebar" data-name="sidebar-item" data-value="navs-pill">
|
||||
<span class="mt-2">Pill One Side</span>
|
||||
</div>
|
||||
<div class="mb-4 text-center">
|
||||
<img src="../../assets/images/settings/dark/09.png" alt="pill-all" class="mode dark-img img-fluid btn-border p-0 flex-column" data-setting="sidebar" data-name="sidebar-item" data-value="navs-pill-all">
|
||||
<img src="../../assets/images/settings/light/08.png" alt="pill-all" class="mode light-img img-fluid btn-border p-0 flex-column" data-setting="sidebar" data-name="sidebar-item" data-value="navs-pill-all">
|
||||
<span class="mt-2">Pill All</span>
|
||||
</div>
|
||||
</div>
|
||||
<hr class="hr-horizontal">
|
||||
<h5 class="mt-4 mb-3">Navbar Style</h5>
|
||||
<div class="d-grid gap-x-3 grid-cols-2">
|
||||
<div class="mb-4 text-center">
|
||||
<img src="../../assets/images/settings/dark/11.png" alt="image" class="mode dark-img img-fluid btn-border p-0 flex-column" data-setting="navbar" data-target=".iq-navbar" data-name="navbar-type" data-value="nav-glass">
|
||||
<img src="../../assets/images/settings/light/10.png" alt="image" class="mode light-img img-fluid btn-border p-0 flex-column" data-setting="navbar" data-target=".iq-navbar" data-name="navbar-type" data-value="nav-glass">
|
||||
<span class="mt-2">Glass</span>
|
||||
</div>
|
||||
<div class="mb-4 text-center">
|
||||
<img src="../../assets/images/settings/dark/10.png" alt="color" class="mode dark-img img-fluid btn-border p-0 flex-column" data-setting="navbar" data-target=".iq-navbar-header" data-name="navbar-type" data-value="navs-bg-color">
|
||||
<img src="../../assets/images/settings/light/11.png" alt="color" class="mode light-img img-fluid btn-border p-0 flex-column" data-setting="navbar" data-target=".iq-navbar-header" data-name="navbar-type" data-value="navs-bg-color">
|
||||
<span class="mt-2">Color</span>
|
||||
</div>
|
||||
<div class="mb-4 text-center">
|
||||
<img src="../../assets/images/settings/dark/12.png" alt="sticky" class="mode dark-img img-fluid btn-border p-0 flex-column" data-setting="navbar" data-target=".iq-navbar" data-name="navbar-type" data-value="navs-sticky">
|
||||
<img src="../../assets/images/settings/light/12.png" alt="sticky" class="mode light-img img-fluid btn-border p-0 flex-column" data-setting="navbar" data-target=".iq-navbar" data-name="navbar-type" data-value="navs-sticky">
|
||||
<span class="mt-2">Sticky</span>
|
||||
</div>
|
||||
<div class="mb-4 text-center">
|
||||
<img src="../../assets/images/settings/dark/13.png" alt="transparent" class="mode dark-img img-fluid btn-border p-0 flex-column" data-setting="navbar" data-target=".iq-navbar" data-name="navbar-type" data-value="navs-transparent">
|
||||
<img src="../../assets/images/settings/light/13.png" alt="transparent" class="mode light-img img-fluid btn-border p-0 flex-column" data-setting="navbar" data-target=".iq-navbar" data-name="navbar-type" data-value="navs-transparent">
|
||||
<span class="mt-2">Transparent</span>
|
||||
</div>
|
||||
<div class="btn btn-border active col-span-full" data-setting="navbar" data-name="navbar-default" data-value="default">
|
||||
<i class="text-body">
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="18" viewBox="0 0 24 24" fill="currentColor">
|
||||
<circle cx="12" cy="12" r="8" fill="#F5F6FA" stroke="black" stroke-width="3"></circle>
|
||||
</svg>
|
||||
</i>
|
||||
<span class="ms-2 "> Default Navbar</span>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<!-- Library Bundle Script -->
|
||||
<script src="../../assets/js/core/libs.min.js"></script>
|
||||
|
||||
<!-- External Library Bundle Script -->
|
||||
<script src="../../assets/js/core/external.min.js"></script>
|
||||
|
||||
<!-- Widgetchart Script -->
|
||||
<script src="../../assets/js/charts/widgetcharts.js"></script>
|
||||
|
||||
<!-- mapchart Script -->
|
||||
<script src="../../assets/js/charts/vectore-chart.js"></script>
|
||||
<script src="../../assets/js/charts/dashboard.js" ></script>
|
||||
|
||||
<!-- fslightbox Script -->
|
||||
<script src="../../assets/js/plugins/fslightbox.js"></script>
|
||||
|
||||
<!-- Settings Script -->
|
||||
<script src="../../assets/js/plugins/setting.js"></script>
|
||||
|
||||
<!-- Slider-tab Script -->
|
||||
<script src="../../assets/js/plugins/slider-tabs.js"></script>
|
||||
|
||||
<!-- Form Wizard Script -->
|
||||
<script src="../../assets/js/plugins/form-wizard.js"></script>
|
||||
|
||||
<script src="../../assets/js/pages/mc-product-create.js"></script>
|
||||
|
||||
|
||||
<!-- AOS Animation Plugin-->
|
||||
|
||||
<!-- App Script -->
|
||||
<script src="../../assets/js/hope-ui.js" defer></script>
|
||||
</body>
|
||||
</html>
|
||||
693
dashboard/products/mc-products-list.html
Normal file
693
dashboard/products/mc-products-list.html
Normal file
@@ -0,0 +1,693 @@
|
||||
|
||||
|
||||
<!doctype html>
|
||||
<html lang="en" dir="ltr">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
|
||||
<title>Mercury Cloud | Gestion des produits Minecraft</title>
|
||||
|
||||
<!-- Favicon -->
|
||||
<link rel="shortcut icon" href="../../assets/images/favicon.ico" />
|
||||
|
||||
<!-- Library / Plugin Css Build -->
|
||||
<link rel="stylesheet" href="../../assets/css/core/libs.min.css" />
|
||||
|
||||
|
||||
<!-- Hope Ui Design System Css -->
|
||||
<link rel="stylesheet" href="../../assets/css/hope-ui.min.css?v=1.2.0" />
|
||||
|
||||
<!-- Custom Css -->
|
||||
<link rel="stylesheet" href="../../assets/css/custom.min.css?v=1.2.0" />
|
||||
|
||||
<!-- Dark Css -->
|
||||
<link rel="stylesheet" href="../../assets/css/dark.min.css"/>
|
||||
|
||||
<!-- Customizer Css -->
|
||||
<link rel="stylesheet" href="../../assets/css/customizer.min.css" />
|
||||
|
||||
<!-- RTL Css -->
|
||||
<link rel="stylesheet" href="../../assets/css/rtl.min.css"/>
|
||||
|
||||
</head>
|
||||
<body class=" ">
|
||||
<!-- loader Start -->
|
||||
<div id="loading">
|
||||
<div class="loader simple-loader">
|
||||
<div class="loader-body"></div>
|
||||
</div> </div>
|
||||
<!-- loader END -->
|
||||
|
||||
<aside class="sidebar sidebar-default navs-rounded-all ">
|
||||
<div class="sidebar-header d-flex align-items-center justify-content-start">
|
||||
<a href="../../dashboard/index.html" class="navbar-brand">
|
||||
<!--Logo start-->
|
||||
<svg width="30" class="" viewBox="0 0 30 30" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<rect x="-0.757324" y="19.2427" width="28" height="4" rx="2" transform="rotate(-45 -0.757324 19.2427)" fill="currentColor"/>
|
||||
<rect x="7.72803" y="27.728" width="28" height="4" rx="2" transform="rotate(-45 7.72803 27.728)" fill="currentColor"/>
|
||||
<rect x="10.5366" y="16.3945" width="16" height="4" rx="2" transform="rotate(45 10.5366 16.3945)" fill="currentColor"/>
|
||||
<rect x="10.5562" y="-0.556152" width="28" height="4" rx="2" transform="rotate(45 10.5562 -0.556152)" fill="currentColor"/>
|
||||
</svg>
|
||||
<!--logo End--> <h4 class="logo-title">Mercury Cloud</h4>
|
||||
</a>
|
||||
<div class="sidebar-toggle" data-toggle="sidebar" data-active="true">
|
||||
<i class="icon">
|
||||
<svg width="20" height="20" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M4.25 12.2744L19.25 12.2744" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"></path>
|
||||
<path d="M10.2998 18.2988L4.2498 12.2748L10.2998 6.24976" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"></path>
|
||||
</svg>
|
||||
</i>
|
||||
</div>
|
||||
</div>
|
||||
<div class="sidebar-body pt-0 data-scrollbar">
|
||||
<div class="sidebar-list">
|
||||
<!-- Sidebar Menu Start -->
|
||||
<ul class="navbar-nav iq-main-menu" id="sidebar-menu">
|
||||
<li class="nav-item static-item">
|
||||
<a class="nav-link static-item disabled" href="#" tabindex="-1">
|
||||
<span class="default-icon">Home</span>
|
||||
<span class="mini-icon">-</span>
|
||||
</a>
|
||||
</li>
|
||||
<li class="nav-item">
|
||||
<a class="nav-link " aria-current="page" href="../../dashboard/index.html">
|
||||
<i class="icon">
|
||||
<svg width="20" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path opacity="0.4" d="M16.0756 2H19.4616C20.8639 2 22.0001 3.14585 22.0001 4.55996V7.97452C22.0001 9.38864 20.8639 10.5345 19.4616 10.5345H16.0756C14.6734 10.5345 13.5371 9.38864 13.5371 7.97452V4.55996C13.5371 3.14585 14.6734 2 16.0756 2Z" fill="currentColor"></path>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M4.53852 2H7.92449C9.32676 2 10.463 3.14585 10.463 4.55996V7.97452C10.463 9.38864 9.32676 10.5345 7.92449 10.5345H4.53852C3.13626 10.5345 2 9.38864 2 7.97452V4.55996C2 3.14585 3.13626 2 4.53852 2ZM4.53852 13.4655H7.92449C9.32676 13.4655 10.463 14.6114 10.463 16.0255V19.44C10.463 20.8532 9.32676 22 7.92449 22H4.53852C3.13626 22 2 20.8532 2 19.44V16.0255C2 14.6114 3.13626 13.4655 4.53852 13.4655ZM19.4615 13.4655H16.0755C14.6732 13.4655 13.537 14.6114 13.537 16.0255V19.44C13.537 20.8532 14.6732 22 16.0755 22H19.4615C20.8637 22 22 20.8532 22 19.44V16.0255C22 14.6114 20.8637 13.4655 19.4615 13.4655Z" fill="currentColor"></path>
|
||||
</svg>
|
||||
</i>
|
||||
<span class="item-name">Dashboard</span>
|
||||
</a>
|
||||
</li>
|
||||
<li class="nav-item">
|
||||
<a class="nav-link " href="../../dashboard/form/form-wizard.html">
|
||||
<i class="icon">
|
||||
<svg width="20" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M14.1213 11.2331H16.8891C17.3088 11.2331 17.6386 10.8861 17.6386 10.4677C17.6386 10.0391 17.3088 9.70236 16.8891 9.70236H14.1213C13.7016 9.70236 13.3719 10.0391 13.3719 10.4677C13.3719 10.8861 13.7016 11.2331 14.1213 11.2331ZM20.1766 5.92749C20.7861 5.92749 21.1858 6.1418 21.5855 6.61123C21.9852 7.08067 22.0551 7.7542 21.9652 8.36549L21.0159 15.06C20.8361 16.3469 19.7569 17.2949 18.4879 17.2949H7.58639C6.25742 17.2949 5.15828 16.255 5.04837 14.908L4.12908 3.7834L2.62026 3.51807C2.22057 3.44664 1.94079 3.04864 2.01073 2.64043C2.08068 2.22305 2.47038 1.94649 2.88006 2.00874L5.2632 2.3751C5.60293 2.43735 5.85274 2.72207 5.88272 3.06905L6.07257 5.35499C6.10254 5.68257 6.36234 5.92749 6.68209 5.92749H20.1766ZM7.42631 18.9079C6.58697 18.9079 5.9075 19.6018 5.9075 20.459C5.9075 21.3061 6.58697 22 7.42631 22C8.25567 22 8.93514 21.3061 8.93514 20.459C8.93514 19.6018 8.25567 18.9079 7.42631 18.9079ZM18.6676 18.9079C17.8282 18.9079 17.1487 19.6018 17.1487 20.459C17.1487 21.3061 17.8282 22 18.6676 22C19.4969 22 20.1764 21.3061 20.1764 20.459C20.1764 19.6018 19.4969 18.9079 18.6676 18.9079Z" fill="currentColor"></path>
|
||||
</svg>
|
||||
</i>
|
||||
<i class="sidenav-mini-icon"> W </i>
|
||||
<span class="item-name">Commander</span>
|
||||
</a>
|
||||
</li>
|
||||
<li><hr class="hr-horizontal"></li>
|
||||
<li class="nav-item static-item">
|
||||
<a class="nav-link static-item disabled" href="#" tabindex="-1">
|
||||
<span class="default-icon">Admin</span>
|
||||
<span class="mini-icon">-</span>
|
||||
</a>
|
||||
</li>
|
||||
<li class="nav-item">
|
||||
<a class="nav-link" data-bs-toggle="collapse" href="#sidebar-user" role="button" aria-expanded="false" aria-controls="sidebar-user">
|
||||
<i class="icon">
|
||||
<svg width="20" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path opacity="0.4" d="M2 11.0786C2.05 13.4166 2.19 17.4156 2.21 17.8566C2.281 18.7996 2.642 19.7526 3.204 20.4246C3.986 21.3676 4.949 21.7886 6.292 21.7886C8.148 21.7986 10.194 21.7986 12.181 21.7986C14.176 21.7986 16.112 21.7986 17.747 21.7886C19.071 21.7886 20.064 21.3566 20.836 20.4246C21.398 19.7526 21.759 18.7896 21.81 17.8566C21.83 17.4856 21.93 13.1446 21.99 11.0786H2Z" fill="currentColor"></path> <path d="M11.2451 15.3843V16.6783C11.2451 17.0923 11.5811 17.4283 11.9951 17.4283C12.4091 17.4283 12.7451 17.0923 12.7451 16.6783V15.3843C12.7451 14.9703 12.4091 14.6343 11.9951 14.6343C11.5811 14.6343 11.2451 14.9703 11.2451 15.3843Z" fill="currentColor"></path> <path fill-rule="evenodd" clip-rule="evenodd" d="M10.211 14.5565C10.111 14.9195 9.762 15.1515 9.384 15.1015C6.833 14.7455 4.395 13.8405 2.337 12.4815C2.126 12.3435 2 12.1075 2 11.8555V8.38949C2 6.28949 3.712 4.58149 5.817 4.58149H7.784C7.972 3.12949 9.202 2.00049 10.704 2.00049H13.286C14.787 2.00049 16.018 3.12949 16.206 4.58149H18.183C20.282 4.58149 21.99 6.28949 21.99 8.38949V11.8555C21.99 12.1075 21.863 12.3425 21.654 12.4815C19.592 13.8465 17.144 14.7555 14.576 15.1105C14.541 15.1155 14.507 15.1175 14.473 15.1175C14.134 15.1175 13.831 14.8885 13.746 14.5525C13.544 13.7565 12.821 13.1995 11.99 13.1995C11.148 13.1995 10.433 13.7445 10.211 14.5565ZM13.286 3.50049H10.704C10.031 3.50049 9.469 3.96049 9.301 4.58149H14.688C14.52 3.96049 13.958 3.50049 13.286 3.50049Z" fill="currentColor">
|
||||
</path></svg>
|
||||
</i>
|
||||
<span class="item-name">Boutique</span>
|
||||
<i class="right-icon">
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="18" fill="none" viewBox="0 0 24 24" stroke="currentColor">
|
||||
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9 5l7 7-7 7" />
|
||||
</svg>
|
||||
</i>
|
||||
</a>
|
||||
<ul class="sub-nav collapse" id="sidebar-user" data-bs-parent="#sidebar-menu">
|
||||
</li>
|
||||
<li class="nav-item">
|
||||
<a class="nav-link active" href="../../dashboard/products/mc-products-list.html">
|
||||
<i class="icon">
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="10" viewBox="0 0 24 24" fill="currentColor">
|
||||
<g>
|
||||
<circle cx="12" cy="12" r="8" fill="currentColor"></circle>
|
||||
</g>
|
||||
</svg>
|
||||
</i>
|
||||
<i class="sidenav-mini-icon"> U </i>
|
||||
<span class="item-name">Produits Minecraft</span>
|
||||
</a>
|
||||
</li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
<!-- Sidebar Menu End -->
|
||||
</div>
|
||||
</div>
|
||||
<div class="sidebar-footer"></div>
|
||||
</aside> <main class="main-content">
|
||||
<div class="position-relative iq-banner">
|
||||
<!--Nav Start-->
|
||||
<nav class="nav navbar navbar-expand-lg navbar-light iq-navbar">
|
||||
<div class="container-fluid navbar-inner">
|
||||
<a href="../../dashboard/index.html" class="navbar-brand">
|
||||
<!--Logo start-->
|
||||
<svg width="30" class="text-primary" viewBox="0 0 30 30" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<rect x="-0.757324" y="19.2427" width="28" height="4" rx="2" transform="rotate(-45 -0.757324 19.2427)" fill="currentColor"/>
|
||||
<rect x="7.72803" y="27.728" width="28" height="4" rx="2" transform="rotate(-45 7.72803 27.728)" fill="currentColor"/>
|
||||
<rect x="10.5366" y="16.3945" width="16" height="4" rx="2" transform="rotate(45 10.5366 16.3945)" fill="currentColor"/>
|
||||
<rect x="10.5562" y="-0.556152" width="28" height="4" rx="2" transform="rotate(45 10.5562 -0.556152)" fill="currentColor"/>
|
||||
</svg>
|
||||
<!--logo End--> <h4 class="logo-title">Mercury Cloud</h4>
|
||||
</a>
|
||||
<div class="sidebar-toggle" data-toggle="sidebar" data-active="true">
|
||||
<i class="icon">
|
||||
<svg width="20px" height="20px" viewBox="0 0 24 24">
|
||||
<path fill="currentColor" d="M4,11V13H16L10.5,18.5L11.92,19.92L19.84,12L11.92,4.08L10.5,5.5L16,11H4Z" />
|
||||
</svg>
|
||||
</i>
|
||||
</div>
|
||||
<div class="input-group search-input">
|
||||
<span class="input-group-text" id="search-input">
|
||||
<svg width="18" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<circle cx="11.7669" cy="11.7666" r="8.98856" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"></circle>
|
||||
<path d="M18.0186 18.4851L21.5426 22" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"></path>
|
||||
</svg>
|
||||
</span>
|
||||
<input type="search" class="form-control" placeholder="Rechercher...">
|
||||
</div>
|
||||
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarSupportedContent" aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation">
|
||||
<span class="navbar-toggler-icon">
|
||||
<span class="mt-2 navbar-toggler-bar bar1"></span>
|
||||
<span class="navbar-toggler-bar bar2"></span>
|
||||
<span class="navbar-toggler-bar bar3"></span>
|
||||
</span>
|
||||
</button>
|
||||
<div class="collapse navbar-collapse" id="navbarSupportedContent">
|
||||
<ul class="mb-2 navbar-nav ms-auto align-items-center navbar-list mb-lg-0">
|
||||
<li class="nav-item dropdown">
|
||||
<a href="#" class="search-toggle nav-link" id="dropdownMenuButton2" data-bs-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
||||
<img src="../../assets/images/Flag/flag001.png" class="img-fluid rounded-circle" alt="user" style="height: 30px; min-width: 30px; width: 30px;">
|
||||
<span class="bg-primary"></span>
|
||||
</a>
|
||||
<div class="p-0 sub-drop dropdown-menu dropdown-menu-end" aria-labelledby="dropdownMenuButton2">
|
||||
<div class="m-0 border-0 shadow-none card">
|
||||
<div class="p-0 ">
|
||||
<ul class="p-0 list-group list-group-flush">
|
||||
<li class="iq-sub-card list-group-item"><a class="p-0" href="#"><img src="../../assets/images/Flag/flag-03.png" alt="img-flaf" class="img-fluid me-2" style="width: 15px;height: 15px;min-width: 15px;"/>Spanish</a></li>
|
||||
<li class="iq-sub-card list-group-item"><a class="p-0" href="#"><img src="../../assets/images/Flag/flag-04.png" alt="img-flaf" class="img-fluid me-2" style="width: 15px;height: 15px;min-width: 15px;"/>Italian</a></li>
|
||||
<li class="iq-sub-card list-group-item"><a class="p-0" href="#"><img src="../../assets/images/Flag/flag-02.png" alt="img-flaf" class="img-fluid me-2" style="width: 15px;height: 15px;min-width: 15px;"/>French</a></li>
|
||||
<li class="iq-sub-card list-group-item"><a class="p-0" href="#"><img src="../../assets/images/Flag/flag-05.png" alt="img-flaf" class="img-fluid me-2" style="width: 15px;height: 15px;min-width: 15px;"/>German</a></li>
|
||||
<li class="iq-sub-card list-group-item"><a class="p-0" href="#"><img src="../../assets/images/Flag/flag-06.png" alt="img-flaf" class="img-fluid me-2" style="width: 15px;height: 15px;min-width: 15px;"/>Japanese</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</li>
|
||||
<li class="nav-item dropdown">
|
||||
<a href="#" class="nav-link" id="notification-drop" data-bs-toggle="dropdown" >
|
||||
<svg width="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M19.7695 11.6453C19.039 10.7923 18.7071 10.0531 18.7071 8.79716V8.37013C18.7071 6.73354 18.3304 5.67907 17.5115 4.62459C16.2493 2.98699 14.1244 2 12.0442 2H11.9558C9.91935 2 7.86106 2.94167 6.577 4.5128C5.71333 5.58842 5.29293 6.68822 5.29293 8.37013V8.79716C5.29293 10.0531 4.98284 10.7923 4.23049 11.6453C3.67691 12.2738 3.5 13.0815 3.5 13.9557C3.5 14.8309 3.78723 15.6598 4.36367 16.3336C5.11602 17.1413 6.17846 17.6569 7.26375 17.7466C8.83505 17.9258 10.4063 17.9933 12.0005 17.9933C13.5937 17.9933 15.165 17.8805 16.7372 17.7466C17.8215 17.6569 18.884 17.1413 19.6363 16.3336C20.2118 15.6598 20.5 14.8309 20.5 13.9557C20.5 13.0815 20.3231 12.2738 19.7695 11.6453Z" fill="currentColor"></path>
|
||||
<path opacity="0.4" d="M14.0088 19.2283C13.5088 19.1215 10.4627 19.1215 9.96275 19.2283C9.53539 19.327 9.07324 19.5566 9.07324 20.0602C9.09809 20.5406 9.37935 20.9646 9.76895 21.2335L9.76795 21.2345C10.2718 21.6273 10.8632 21.877 11.4824 21.9667C11.8123 22.012 12.1482 22.01 12.4901 21.9667C13.1083 21.877 13.6997 21.6273 14.2036 21.2345L14.2026 21.2335C14.5922 20.9646 14.8734 20.5406 14.8983 20.0602C14.8983 19.5566 14.4361 19.327 14.0088 19.2283Z" fill="currentColor"></path>
|
||||
</svg>
|
||||
<span class="bg-danger dots"></span>
|
||||
</a>
|
||||
<div class="p-0 sub-drop dropdown-menu dropdown-menu-end" aria-labelledby="notification-drop">
|
||||
<div class="m-0 shadow-none card">
|
||||
<div class="py-3 card-header d-flex justify-content-between bg-primary">
|
||||
<div class="header-title">
|
||||
<h5 class="mb-0 text-white">All Notifications</h5>
|
||||
</div>
|
||||
</div>
|
||||
<div class="p-0 card-body">
|
||||
<a href="#" class="iq-sub-card">
|
||||
<div class="d-flex align-items-center">
|
||||
<img class="p-1 avatar-40 rounded-pill bg-soft-primary" src="../../assets/images/shapes/01.png" alt="">
|
||||
<div class="ms-3 w-100">
|
||||
<h6 class="mb-0 ">Emma Watson Bni</h6>
|
||||
<div class="d-flex justify-content-between align-items-center">
|
||||
<p class="mb-0">95 MB</p>
|
||||
<small class="float-end font-size-12">Just Now</small>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</a>
|
||||
<a href="#" class="iq-sub-card">
|
||||
<div class="d-flex align-items-center">
|
||||
<div class="">
|
||||
<img class="p-1 avatar-40 rounded-pill bg-soft-primary" src="../../assets/images/shapes/02.png" alt="">
|
||||
</div>
|
||||
<div class="ms-3 w-100">
|
||||
<h6 class="mb-0 ">New customer is join</h6>
|
||||
<div class="d-flex justify-content-between align-items-center">
|
||||
<p class="mb-0">Cyst Bni</p>
|
||||
<small class="float-end font-size-12">5 days ago</small>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</a>
|
||||
<a href="#" class="iq-sub-card">
|
||||
<div class="d-flex align-items-center">
|
||||
<img class="p-1 avatar-40 rounded-pill bg-soft-primary" src="../../assets/images/shapes/03.png" alt="">
|
||||
<div class="ms-3 w-100">
|
||||
<h6 class="mb-0 ">Two customer is left</h6>
|
||||
<div class="d-flex justify-content-between align-items-center">
|
||||
<p class="mb-0">Cyst Bni</p>
|
||||
<small class="float-end font-size-12">2 days ago</small>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</a>
|
||||
<a href="#" class="iq-sub-card">
|
||||
<div class="d-flex align-items-center">
|
||||
<img class="p-1 avatar-40 rounded-pill bg-soft-primary" src="../../assets/images/shapes/04.png" alt="">
|
||||
<div class="w-100 ms-3">
|
||||
<h6 class="mb-0 ">New Mail from Fenny</h6>
|
||||
<div class="d-flex justify-content-between align-items-center">
|
||||
<p class="mb-0">Cyst Bni</p>
|
||||
<small class="float-end font-size-12">3 days ago</small>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</li>
|
||||
<li class="nav-item dropdown">
|
||||
<a href="#" class="nav-link" id="mail-drop" data-bs-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
||||
<svg width="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path opacity="0.4" d="M22 15.94C22 18.73 19.76 20.99 16.97 21H16.96H7.05C4.27 21 2 18.75 2 15.96V15.95C2 15.95 2.006 11.524 2.014 9.298C2.015 8.88 2.495 8.646 2.822 8.906C5.198 10.791 9.447 14.228 9.5 14.273C10.21 14.842 11.11 15.163 12.03 15.163C12.95 15.163 13.85 14.842 14.56 14.262C14.613 14.227 18.767 10.893 21.179 8.977C21.507 8.716 21.989 8.95 21.99 9.367C22 11.576 22 15.94 22 15.94Z" fill="currentColor"></path>
|
||||
<path d="M21.4759 5.67351C20.6099 4.04151 18.9059 2.99951 17.0299 2.99951H7.04988C5.17388 2.99951 3.46988 4.04151 2.60388 5.67351C2.40988 6.03851 2.50188 6.49351 2.82488 6.75151L10.2499 12.6905C10.7699 13.1105 11.3999 13.3195 12.0299 13.3195C12.0339 13.3195 12.0369 13.3195 12.0399 13.3195C12.0429 13.3195 12.0469 13.3195 12.0499 13.3195C12.6799 13.3195 13.3099 13.1105 13.8299 12.6905L21.2549 6.75151C21.5779 6.49351 21.6699 6.03851 21.4759 5.67351Z" fill="currentColor"></path>
|
||||
</svg>
|
||||
<span class="bg-primary count-mail"></span>
|
||||
</a>
|
||||
<div class="p-0 sub-drop dropdown-menu dropdown-menu-end" aria-labelledby="mail-drop">
|
||||
<div class="m-0 shadow-none card">
|
||||
<div class="py-3 card-header d-flex justify-content-between bg-primary">
|
||||
<div class="header-title">
|
||||
<h5 class="mb-0 text-white">All Message</h5>
|
||||
</div>
|
||||
</div>
|
||||
<div class="p-0 card-body ">
|
||||
<a href="#" class="iq-sub-card">
|
||||
<div class="d-flex align-items-center">
|
||||
<div class="">
|
||||
<img class="p-1 avatar-40 rounded-pill bg-soft-primary" src="../../assets/images/shapes/01.png" alt="">
|
||||
</div>
|
||||
<div class="ms-3">
|
||||
<h6 class="mb-0 ">Bni Emma Watson</h6>
|
||||
<small class="float-start font-size-12">13 Jun</small>
|
||||
</div>
|
||||
</div>
|
||||
</a>
|
||||
<a href="#" class="iq-sub-card">
|
||||
<div class="d-flex align-items-center">
|
||||
<div class="">
|
||||
<img class="p-1 avatar-40 rounded-pill bg-soft-primary" src="../../assets/images/shapes/02.png" alt="">
|
||||
</div>
|
||||
<div class="ms-3">
|
||||
<h6 class="mb-0 ">Lorem Ipsum Watson</h6>
|
||||
<small class="float-start font-size-12">20 Apr</small>
|
||||
</div>
|
||||
</div>
|
||||
</a>
|
||||
<a href="#" class="iq-sub-card">
|
||||
<div class="d-flex align-items-center">
|
||||
<div class="">
|
||||
<img class="p-1 avatar-40 rounded-pill bg-soft-primary" src="../../assets/images/shapes/03.png" alt="">
|
||||
</div>
|
||||
<div class="ms-3">
|
||||
<h6 class="mb-0 ">Why do we use it?</h6>
|
||||
<small class="float-start font-size-12">30 Jun</small>
|
||||
</div>
|
||||
</div>
|
||||
</a>
|
||||
<a href="#" class="iq-sub-card">
|
||||
<div class="d-flex align-items-center">
|
||||
<div class="">
|
||||
<img class="p-1 avatar-40 rounded-pill bg-soft-primary" src="../../assets/images/shapes/04.png" alt="">
|
||||
</div>
|
||||
<div class="ms-3">
|
||||
<h6 class="mb-0 ">Variations Passages</h6>
|
||||
<small class="float-start font-size-12">12 Sep</small>
|
||||
</div>
|
||||
</div>
|
||||
</a>
|
||||
<a href="#" class="iq-sub-card">
|
||||
<div class="d-flex align-items-center">
|
||||
<div class="">
|
||||
<img class="p-1 avatar-40 rounded-pill bg-soft-primary" src="../../assets/images/shapes/05.png" alt="">
|
||||
</div>
|
||||
<div class="ms-3">
|
||||
<h6 class="mb-0 ">Lorem Ipsum generators</h6>
|
||||
<small class="float-start font-size-12">5 Dec</small>
|
||||
</div>
|
||||
</div>
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</li>
|
||||
<li class="nav-item dropdown">
|
||||
<a class="py-0 nav-link d-flex align-items-center" href="#" id="navbarDropdown" role="button" data-bs-toggle="dropdown" aria-expanded="false">
|
||||
<img src="../../assets/images/avatars/01.png" alt="User-Profile" class="theme-color-default-img img-fluid avatar avatar-50 avatar-rounded">
|
||||
<img src="../../assets/images/avatars/avtar_1.png" alt="User-Profile" class="theme-color-purple-img img-fluid avatar avatar-50 avatar-rounded">
|
||||
<img src="../../assets/images/avatars/avtar_2.png" alt="User-Profile" class="theme-color-blue-img img-fluid avatar avatar-50 avatar-rounded">
|
||||
<img src="../../assets/images/avatars/avtar_4.png" alt="User-Profile" class="theme-color-green-img img-fluid avatar avatar-50 avatar-rounded">
|
||||
<img src="../../assets/images/avatars/avtar_5.png" alt="User-Profile" class="theme-color-yellow-img img-fluid avatar avatar-50 avatar-rounded">
|
||||
<img src="../../assets/images/avatars/avtar_3.png" alt="User-Profile" class="theme-color-pink-img img-fluid avatar avatar-50 avatar-rounded">
|
||||
<div class="caption ms-3 d-none d-md-block ">
|
||||
<h6 class="mb-0 caption-title">Austin Robertson</h6>
|
||||
<p class="mb-0 caption-sub-title">Marketing Administrator</p>
|
||||
</div>
|
||||
</a>
|
||||
<ul class="dropdown-menu dropdown-menu-end" aria-labelledby="navbarDropdown">
|
||||
<li><a class="dropdown-item" href="../../dashboard/products/user-profile.html">Profile</a></li>
|
||||
<li><a class="dropdown-item" href="../../dashboard/products/user-privacy-setting.html">Privacy Setting</a></li>
|
||||
<li><hr class="dropdown-divider"></li>
|
||||
<li><a class="dropdown-item" href="../../dashboard/auth/sign-in.html">Logout</a></li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</nav> <!-- Nav Header Component Start -->
|
||||
<div class="iq-navbar-header" style="height: 215px;">
|
||||
<div class="container-fluid iq-container">
|
||||
<div class="row">
|
||||
<div class="col-md-12">
|
||||
<div class="flex-wrap d-flex justify-content-between align-items-center">
|
||||
<div>
|
||||
<h1>Hello Devs!</h1>
|
||||
<p>We are on a mission to help developers like you build successful projects for FREE.</p>
|
||||
</div>
|
||||
<div>
|
||||
<a href="" class="btn btn-link btn-soft-light">
|
||||
<svg width="20" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M11.8251 15.2171H12.1748C14.0987 15.2171 15.731 13.985 16.3054 12.2764C16.3887 12.0276 16.1979 11.7713 15.9334 11.7713H14.8562C14.5133 11.7713 14.2362 11.4977 14.2362 11.16C14.2362 10.8213 14.5133 10.5467 14.8562 10.5467H15.9005C16.2463 10.5467 16.5263 10.2703 16.5263 9.92875C16.5263 9.58722 16.2463 9.31075 15.9005 9.31075H14.8562C14.5133 9.31075 14.2362 9.03619 14.2362 8.69849C14.2362 8.35984 14.5133 8.08528 14.8562 8.08528H15.9005C16.2463 8.08528 16.5263 7.8088 16.5263 7.46728C16.5263 7.12575 16.2463 6.84928 15.9005 6.84928H14.8562C14.5133 6.84928 14.2362 6.57472 14.2362 6.23606C14.2362 5.89837 14.5133 5.62381 14.8562 5.62381H15.9886C16.2483 5.62381 16.4343 5.3789 16.3645 5.13113C15.8501 3.32401 14.1694 2 12.1748 2H11.8251C9.42172 2 7.47363 3.92287 7.47363 6.29729V10.9198C7.47363 13.2933 9.42172 15.2171 11.8251 15.2171Z" fill="currentColor"></path>
|
||||
<path opacity="0.4" d="M19.5313 9.82568C18.9966 9.82568 18.5626 10.2533 18.5626 10.7823C18.5626 14.3554 15.6186 17.2627 12.0005 17.2627C8.38136 17.2627 5.43743 14.3554 5.43743 10.7823C5.43743 10.2533 5.00345 9.82568 4.46872 9.82568C3.93398 9.82568 3.5 10.2533 3.5 10.7823C3.5 15.0873 6.79945 18.6413 11.0318 19.1186V21.0434C11.0318 21.5715 11.4648 22.0001 12.0005 22.0001C12.5352 22.0001 12.9692 21.5715 12.9692 21.0434V19.1186C17.2006 18.6413 20.5 15.0873 20.5 10.7823C20.5 10.2533 20.066 9.82568 19.5313 9.82568Z" fill="currentColor"></path>
|
||||
</svg>
|
||||
Announcements
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="iq-header-img">
|
||||
<img src="../../assets/images/dashboard/top-header.png" alt="header" class="theme-color-default-img img-fluid w-100 h-100 animated-scaleX">
|
||||
<img src="../../assets/images/dashboard/top-header1.png" alt="header" class="theme-color-purple-img img-fluid w-100 h-100 animated-scaleX">
|
||||
<img src="../../assets/images/dashboard/top-header2.png" alt="header" class="theme-color-blue-img img-fluid w-100 h-100 animated-scaleX">
|
||||
<img src="../../assets/images/dashboard/top-header3.png" alt="header" class="theme-color-green-img img-fluid w-100 h-100 animated-scaleX">
|
||||
<img src="../../assets/images/dashboard/top-header4.png" alt="header" class="theme-color-yellow-img img-fluid w-100 h-100 animated-scaleX">
|
||||
<img src="../../assets/images/dashboard/top-header5.png" alt="header" class="theme-color-pink-img img-fluid w-100 h-100 animated-scaleX">
|
||||
</div>
|
||||
</div> <!-- Nav Header Component End -->
|
||||
<!--Nav End-->
|
||||
</div>
|
||||
<div class="conatiner-fluid content-inner mt-n5 py-0">
|
||||
<div>
|
||||
<div class="row">
|
||||
<div class="col-sm-12">
|
||||
<div class="card">
|
||||
<div class="card-header d-flex justify-content-between">
|
||||
<div class="header-title">
|
||||
<h4 class="card-title">Produits <a class="btn btn-sm btn-icon btn-success" data-toggle="tooltip" href="/dashboard/products/create-mc-product.html" data-placement="top" title="" data-original-title="Ajouter" href="#">
|
||||
<span class="btn-inner">
|
||||
<svg width="32" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path opacity="0.4" d="M16.6667 2H7.33333C3.92889 2 2 3.92889 2 7.33333V16.6667C2 20.0622 3.92 22 7.33333 22H16.6667C20.0711 22 22 20.0622 22 16.6667V7.33333C22 3.92889 20.0711 2 16.6667 2Z" fill="currentColor"></path>
|
||||
<path d="M15.3205 12.7083H12.7495V15.257C12.7495 15.6673 12.4139 16 12 16C11.5861 16 11.2505 15.6673 11.2505 15.257V12.7083H8.67955C8.29342 12.6687 8 12.3461 8 11.9613C8 11.5765 8.29342 11.2539 8.67955 11.2143H11.2424V8.67365C11.2824 8.29088 11.6078 8 11.996 8C12.3842 8 12.7095 8.29088 12.7495 8.67365V11.2143H15.3205C15.7066 11.2539 16 11.5765 16 11.9613C16 12.3461 15.7066 12.6687 15.3205 12.7083Z" fill="currentColor"></path>
|
||||
</svg>
|
||||
</span>
|
||||
</a></h4>
|
||||
</div>
|
||||
</div>
|
||||
<div class="card-body px-0">
|
||||
<div class="table-responsive">
|
||||
<table id="user-list-table" class="table table-striped" role="grid" data-toggle="data-table">
|
||||
<thead>
|
||||
<tr class="ligth">
|
||||
<th>ID</th>
|
||||
<th>Nom</th>
|
||||
<th>Description</th>
|
||||
<th>Prix</th>
|
||||
<th>Statut</th>
|
||||
<th>Actions</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody id="products-table">
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="btn-download">
|
||||
<a class="btn btn-danger px-3 py-2" href="https://iqonic.design/product/admin-templates/hope-ui-admin-free-open-source-bootstrap-admin-template/" target="_blank" >
|
||||
<svg width="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path opacity="0.4" fill-rule="evenodd" clip-rule="evenodd" d="M5.91064 20.5886C5.91064 19.7486 6.59064 19.0686 7.43064 19.0686C8.26064 19.0686 8.94064 19.7486 8.94064 20.5886C8.94064 21.4186 8.26064 22.0986 7.43064 22.0986C6.59064 22.0986 5.91064 21.4186 5.91064 20.5886ZM17.1606 20.5886C17.1606 19.7486 17.8406 19.0686 18.6806 19.0686C19.5106 19.0686 20.1906 19.7486 20.1906 20.5886C20.1906 21.4186 19.5106 22.0986 18.6806 22.0986C17.8406 22.0986 17.1606 21.4186 17.1606 20.5886Z" fill="currentColor"></path>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M20.1907 6.34909C20.8007 6.34909 21.2007 6.55909 21.6007 7.01909C22.0007 7.47909 22.0707 8.13909 21.9807 8.73809L21.0307 15.2981C20.8507 16.5591 19.7707 17.4881 18.5007 17.4881H7.59074C6.26074 17.4881 5.16074 16.4681 5.05074 15.1491L4.13074 4.24809L2.62074 3.98809C2.22074 3.91809 1.94074 3.52809 2.01074 3.12809C2.08074 2.71809 2.47074 2.44809 2.88074 2.50809L5.26574 2.86809C5.60574 2.92909 5.85574 3.20809 5.88574 3.54809L6.07574 5.78809C6.10574 6.10909 6.36574 6.34909 6.68574 6.34909H20.1907ZM14.1307 11.5481H16.9007C17.3207 11.5481 17.6507 11.2081 17.6507 10.7981C17.6507 10.3781 17.3207 10.0481 16.9007 10.0481H14.1307C13.7107 10.0481 13.3807 10.3781 13.3807 10.7981C13.3807 11.2081 13.7107 11.5481 14.1307 11.5481Z" fill="currentColor"></path>
|
||||
</svg>
|
||||
</a>
|
||||
</div>
|
||||
<!-- Footer Section Start -->
|
||||
<footer class="footer">
|
||||
<div class="footer-body">
|
||||
<ul class="left-panel list-inline mb-0 p-0">
|
||||
<li class="list-inline-item"><a href="../../dashboard/extra/privacy-policy.html">Privacy Policy</a></li>
|
||||
<li class="list-inline-item"><a href="../../dashboard/extra/terms-of-service.html">Terms of Use</a></li>
|
||||
</ul>
|
||||
<div class="right-panel">
|
||||
©<script>document.write(new Date().getFullYear())</script> Mercury Cloud, Made with
|
||||
<span class="text-gray">
|
||||
<svg width="15" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M15.85 2.50065C16.481 2.50065 17.111 2.58965 17.71 2.79065C21.401 3.99065 22.731 8.04065 21.62 11.5806C20.99 13.3896 19.96 15.0406 18.611 16.3896C16.68 18.2596 14.561 19.9196 12.28 21.3496L12.03 21.5006L11.77 21.3396C9.48102 19.9196 7.35002 18.2596 5.40102 16.3796C4.06102 15.0306 3.03002 13.3896 2.39002 11.5806C1.26002 8.04065 2.59002 3.99065 6.32102 2.76965C6.61102 2.66965 6.91002 2.59965 7.21002 2.56065H7.33002C7.61102 2.51965 7.89002 2.50065 8.17002 2.50065H8.28002C8.91002 2.51965 9.52002 2.62965 10.111 2.83065H10.17C10.21 2.84965 10.24 2.87065 10.26 2.88965C10.481 2.96065 10.69 3.04065 10.89 3.15065L11.27 3.32065C11.3618 3.36962 11.4649 3.44445 11.554 3.50912C11.6104 3.55009 11.6612 3.58699 11.7 3.61065C11.7163 3.62028 11.7329 3.62996 11.7496 3.63972C11.8354 3.68977 11.9247 3.74191 12 3.79965C13.111 2.95065 14.46 2.49065 15.85 2.50065ZM18.51 9.70065C18.92 9.68965 19.27 9.36065 19.3 8.93965V8.82065C19.33 7.41965 18.481 6.15065 17.19 5.66065C16.78 5.51965 16.33 5.74065 16.18 6.16065C16.04 6.58065 16.26 7.04065 16.68 7.18965C17.321 7.42965 17.75 8.06065 17.75 8.75965V8.79065C17.731 9.01965 17.8 9.24065 17.94 9.41065C18.08 9.58065 18.29 9.67965 18.51 9.70065Z" fill="currentColor"></path>
|
||||
</svg>
|
||||
</span> by <a href="https://iqonic.design/">IQONIC Design</a>.
|
||||
</div>
|
||||
</div>
|
||||
</footer>
|
||||
<!-- Footer Section End --> </main>
|
||||
<a class="btn btn-fixed-end btn-warning btn-icon btn-setting" data-bs-toggle="offcanvas" data-bs-target="#offcanvasExample" role="button" aria-controls="offcanvasExample">
|
||||
<svg width="24" viewBox="0 0 24 24" class="animated-rotate" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M20.8064 7.62361L20.184 6.54352C19.6574 5.6296 18.4905 5.31432 17.5753 5.83872V5.83872C17.1397 6.09534 16.6198 6.16815 16.1305 6.04109C15.6411 5.91402 15.2224 5.59752 14.9666 5.16137C14.8021 4.88415 14.7137 4.56839 14.7103 4.24604V4.24604C14.7251 3.72922 14.5302 3.2284 14.1698 2.85767C13.8094 2.48694 13.3143 2.27786 12.7973 2.27808H11.5433C11.0367 2.27807 10.5511 2.47991 10.1938 2.83895C9.83644 3.19798 9.63693 3.68459 9.63937 4.19112V4.19112C9.62435 5.23693 8.77224 6.07681 7.72632 6.0767C7.40397 6.07336 7.08821 5.98494 6.81099 5.82041V5.82041C5.89582 5.29601 4.72887 5.61129 4.20229 6.52522L3.5341 7.62361C3.00817 8.53639 3.31916 9.70261 4.22975 10.2323V10.2323C4.82166 10.574 5.18629 11.2056 5.18629 11.8891C5.18629 12.5725 4.82166 13.2041 4.22975 13.5458V13.5458C3.32031 14.0719 3.00898 15.2353 3.5341 16.1454V16.1454L4.16568 17.2346C4.4124 17.6798 4.82636 18.0083 5.31595 18.1474C5.80554 18.2866 6.3304 18.2249 6.77438 17.976V17.976C7.21084 17.7213 7.73094 17.6516 8.2191 17.7822C8.70725 17.9128 9.12299 18.233 9.37392 18.6717C9.53845 18.9489 9.62686 19.2646 9.63021 19.587V19.587C9.63021 20.6435 10.4867 21.5 11.5433 21.5H12.7973C13.8502 21.5001 14.7053 20.6491 14.7103 19.5962V19.5962C14.7079 19.088 14.9086 18.6 15.2679 18.2407C15.6272 17.8814 16.1152 17.6807 16.6233 17.6831C16.9449 17.6917 17.2594 17.7798 17.5387 17.9394V17.9394C18.4515 18.4653 19.6177 18.1544 20.1474 17.2438V17.2438L20.8064 16.1454C21.0615 15.7075 21.1315 15.186 21.001 14.6964C20.8704 14.2067 20.55 13.7894 20.1108 13.5367V13.5367C19.6715 13.284 19.3511 12.8666 19.2206 12.3769C19.09 11.8873 19.16 11.3658 19.4151 10.928C19.581 10.6383 19.8211 10.3982 20.1108 10.2323V10.2323C21.0159 9.70289 21.3262 8.54349 20.8064 7.63277V7.63277V7.62361Z" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"></path>
|
||||
<circle cx="12.1747" cy="11.8891" r="2.63616" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"></circle>
|
||||
</svg>
|
||||
</a>
|
||||
<!-- Wrapper End-->
|
||||
<!-- offcanvas start -->
|
||||
<div class="offcanvas offcanvas-end" tabindex="-1" id="offcanvasExample" data-bs-scroll="true" data-bs-backdrop="true" aria-labelledby="offcanvasExampleLabel">
|
||||
<div class="offcanvas-header">
|
||||
<div class="d-flex align-items-center">
|
||||
<h3 class="offcanvas-title me-3" id="offcanvasExampleLabel">Settings</h3>
|
||||
</div>
|
||||
<button type="button" class="btn-close text-reset" data-bs-dismiss="offcanvas" aria-label="Close"></button>
|
||||
</div>
|
||||
<div class="offcanvas-body data-scrollbar">
|
||||
<div class="row">
|
||||
<div class="col-lg-12">
|
||||
<h5 class="mb-3">Scheme</h5>
|
||||
<div class="d-grid gap-x-3 grid-cols-3 mb-4">
|
||||
<div class="btn-border" data-setting="color-mode" data-name="color" data-value="auto">
|
||||
<svg width="20" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path fill="currentColor" d="M7,2V13H10V22L17,10H13L17,2H7Z" />
|
||||
</svg>
|
||||
<span class="ms-2 "> Auto </span>
|
||||
</div>
|
||||
<div class="btn-border" data-setting="color-mode" data-name="color" data-value="dark">
|
||||
<svg width="20" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path fill="currentColor" d="M9,2C7.95,2 6.95,2.16 6,2.46C10.06,3.73 13,7.5 13,12C13,16.5 10.06,20.27 6,21.54C6.95,21.84 7.95,22 9,22A10,10 0 0,0 19,12A10,10 0 0,0 9,2Z" />
|
||||
</svg>
|
||||
<span class="ms-2 "> Dark </span>
|
||||
</div>
|
||||
<div class="btn-border active" data-setting="color-mode" data-name="color" data-value="light">
|
||||
<svg width="20" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path fill="currentColor" d="M12,8A4,4 0 0,0 8,12A4,4 0 0,0 12,16A4,4 0 0,0 16,12A4,4 0 0,0 12,8M12,18A6,6 0 0,1 6,12A6,6 0 0,1 12,6A6,6 0 0,1 18,12A6,6 0 0,1 12,18M20,8.69V4H15.31L12,0.69L8.69,4H4V8.69L0.69,12L4,15.31V20H8.69L12,23.31L15.31,20H20V15.31L23.31,12L20,8.69Z" />
|
||||
</svg>
|
||||
<span class="ms-2 "> Light</span>
|
||||
</div>
|
||||
</div>
|
||||
<hr class="hr-horizontal">
|
||||
<div class="d-flex align-items-center justify-content-between">
|
||||
<h5 class="mt-4 mb-3">Color Customizer</h5>
|
||||
<button class="btn btn-transparent p-0" data-value="theme-color-default" data-info="#079aa2" data-setting="color-mode1" data-name="color" data-bs-toggle="tooltip" data-bs-placement="top" title="" data-bs-original-title="Default">
|
||||
<svg width="18" height="18" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M21.4799 12.2424C21.7557 12.2326 21.9886 12.4482 21.9852 12.7241C21.9595 14.8075 21.2975 16.8392 20.0799 18.5506C18.7652 20.3986 16.8748 21.7718 14.6964 22.4612C12.518 23.1505 10.1711 23.1183 8.01299 22.3694C5.85488 21.6205 4.00382 20.196 2.74167 18.3126C1.47952 16.4293 0.875433 14.1905 1.02139 11.937C1.16734 9.68346 2.05534 7.53876 3.55018 5.82945C5.04501 4.12014 7.06478 2.93987 9.30193 2.46835C11.5391 1.99683 13.8711 2.2599 15.9428 3.2175L16.7558 1.91838C16.9822 1.55679 17.5282 1.62643 17.6565 2.03324L18.8635 5.85986C18.945 6.11851 18.8055 6.39505 18.549 6.48314L14.6564 7.82007C14.2314 7.96603 13.8445 7.52091 14.0483 7.12042L14.6828 5.87345C13.1977 5.18699 11.526 4.9984 9.92231 5.33642C8.31859 5.67443 6.8707 6.52052 5.79911 7.74586C4.72753 8.97119 4.09095 10.5086 3.98633 12.1241C3.8817 13.7395 4.31474 15.3445 5.21953 16.6945C6.12431 18.0446 7.45126 19.0658 8.99832 19.6027C10.5454 20.1395 12.2278 20.1626 13.7894 19.6684C15.351 19.1743 16.7062 18.1899 17.6486 16.8652C18.4937 15.6773 18.9654 14.2742 19.0113 12.8307C19.0201 12.5545 19.2341 12.3223 19.5103 12.3125L21.4799 12.2424Z" fill="#31BAF1"/>
|
||||
<path d="M20.0941 18.5594C21.3117 16.848 21.9736 14.8163 21.9993 12.7329C22.0027 12.4569 21.7699 12.2413 21.4941 12.2512L19.5244 12.3213C19.2482 12.3311 19.0342 12.5633 19.0254 12.8395C18.9796 14.283 18.5078 15.6861 17.6628 16.8739C16.7203 18.1986 15.3651 19.183 13.8035 19.6772C12.2419 20.1714 10.5595 20.1483 9.01246 19.6114C7.4654 19.0746 6.13845 18.0534 5.23367 16.7033C4.66562 15.8557 4.28352 14.9076 4.10367 13.9196C4.00935 18.0934 6.49194 21.37 10.008 22.6416C10.697 22.8908 11.4336 22.9852 12.1652 22.9465C13.075 22.8983 13.8508 22.742 14.7105 22.4699C16.8889 21.7805 18.7794 20.4073 20.0941 18.5594Z" fill="#0169CA"/>
|
||||
</svg>
|
||||
</button>
|
||||
</div>
|
||||
<div class="grid-cols-5 mb-4 d-grid gap-x-2">
|
||||
<div class="btn-border" data-value="theme-color-blue" data-info="#573BFF" data-setting="color-mode1" data-name="color" data-bs-toggle="tooltip" data-bs-placement="top" title="" data-bs-original-title="Theme-1">
|
||||
<svg class="customizer-btn" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="32" height="32"> <circle cx="12" cy="12" r="10" fill="#00C3F9" /> <path d="M2,12 a1,1 1 1,0 20,0" fill="#573BFF" /></svg>
|
||||
</div>
|
||||
<div class="btn-border" data-value="theme-color-gray" data-info="#FD8D00" data-setting="color-mode1" data-name="color" data-bs-toggle="tooltip" data-bs-placement="top" title="" data-bs-original-title="Theme-2">
|
||||
<svg class="customizer-btn" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="32" height="32"> <circle cx="12" cy="12" r="10" fill="#91969E" /> <path d="M2,12 a1,1 1 1,0 20,0" fill="#FD8D00" /></svg>
|
||||
</div>
|
||||
<div class="btn-border" data-value="theme-color-red" data-info="#366AF0" data-setting="color-mode1" data-name="color" data-bs-toggle="tooltip" data-bs-placement="top" title="" data-bs-original-title="Theme-3">
|
||||
<svg class="customizer-btn" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="32" height="32"> <circle cx="12" cy="12" r="10" fill="#DB5363" /> <path d="M2,12 a1,1 1 1,0 20,0" fill="#366AF0" /></svg>
|
||||
</div>
|
||||
<div class="btn-border" data-value="theme-color-yellow" data-info="#6410F1" data-setting="color-mode1" data-name="color" data-bs-toggle="tooltip" data-bs-placement="top" title="" data-bs-original-title="Theme-4">
|
||||
<svg class="customizer-btn" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="32" height="32"> <circle cx="12" cy="12" r="10" fill="#EA6A12" /> <path d="M2,12 a1,1 1 1,0 20,0" fill="#6410F1" /></svg>
|
||||
</div>
|
||||
<div class="btn-border" data-value="theme-color-pink" data-info="#25C799" data-setting="color-mode1" data-name="color" data-bs-toggle="tooltip" data-bs-placement="top" title="" data-bs-original-title="Theme-5">
|
||||
<svg class="customizer-btn" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="32" height="32"> <circle cx="12" cy="12" r="10" fill="#E586B3" /> <path d="M2,12 a1,1 1 1,0 20,0" fill="#25C799" /></svg>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
<hr class="hr-horizontal">
|
||||
<h5 class="mb-3 mt-4">Scheme Direction</h5>
|
||||
<div class="d-grid gap-x-3 grid-cols-2 mb-4">
|
||||
<div class="text-center">
|
||||
<img src="../../assets/images/settings/dark/01.png" alt="ltr" class="mode dark-img img-fluid btn-border p-0 flex-column active" data-setting="dir-mode" data-name="dir" data-value="ltr">
|
||||
<img src="../../assets/images/settings/light/01.png" alt="ltr" class="mode light-img img-fluid btn-border p-0 flex-column active" data-setting="dir-mode" data-name="dir" data-value="ltr">
|
||||
<span class=" mt-2"> LTR </span>
|
||||
</div>
|
||||
<div class="text-center">
|
||||
<img src="../../assets/images/settings/dark/02.png" alt="" class="mode dark-img img-fluid btn-border p-0 flex-column" data-setting="dir-mode" data-name="dir" data-value="rtl">
|
||||
<img src="../../assets/images/settings/light/02.png" alt="" class="mode light-img img-fluid btn-border p-0 flex-column" data-setting="dir-mode" data-name="dir" data-value="rtl">
|
||||
<span class="mt-2 "> RTL </span>
|
||||
</div>
|
||||
</div>
|
||||
<hr class="hr-horizontal">
|
||||
<h5 class="mt-4 mb-3">Sidebar Color</h5>
|
||||
<div class="d-grid gap-x-3 grid-cols-2 mb-4">
|
||||
<div class="btn btn-border mb-4" data-setting="sidebar" data-name="sidebar-color" data-value="sidebar-dark">
|
||||
<i class="text-dark">
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="18" viewBox="0 0 24 24" fill="currentColor">
|
||||
<circle cx="12" cy="12" r="8" fill="currentColor"></circle>
|
||||
</svg>
|
||||
</i>
|
||||
<span class="ms-2 "> Dark </span>
|
||||
</div>
|
||||
<div class="btn btn-border mb-4" data-setting="sidebar" data-name="sidebar-color" data-value="sidebar-color">
|
||||
<i class="text-primary">
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="18" viewBox="0 0 24 24" fill="currentColor">
|
||||
<circle cx="12" cy="12" r="8" fill="currentColor"></circle>
|
||||
</svg>
|
||||
</i>
|
||||
<span class="ms-2 "> Color </span>
|
||||
</div>
|
||||
<div class="btn btn-border active" data-setting="sidebar" data-name="sidebar-color" data-value="sidebar-white">
|
||||
<i class="text-white">
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="18" viewBox="0 0 24 24" fill="currentColor">
|
||||
<circle cx="12" cy="12" r="8" fill="currentColor" stroke="black" stroke-width="3"></circle>
|
||||
</svg>
|
||||
</i>
|
||||
<span class="ms-2 "> White </span>
|
||||
</div>
|
||||
<div class="btn btn-border " data-setting="sidebar" data-name="sidebar-color" data-value="sidebar-transparent">
|
||||
<i class="text-body">
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="18" viewBox="0 0 24 24" fill="currentColor">
|
||||
<circle cx="12" cy="12" r="8" fill="#F5F6FA" stroke="black" stroke-width="3"></circle>
|
||||
</svg>
|
||||
</i>
|
||||
<span class="ms-2 "> Transparent </span>
|
||||
</div>
|
||||
</div>
|
||||
<hr class="hr-horizontal">
|
||||
<h5 class="mt-4 mb-3">Sidebar Types</h5>
|
||||
<div class="d-grid gap-x-3 grid-cols-3 mb-4">
|
||||
<div class="text-center">
|
||||
<img src="../../assets/images/settings/dark/03.png" alt="mini" class="mode dark-img img-fluid btn-border p-0 flex-column" data-setting="sidebar" data-name="sidebar-type" data-value="sidebar-mini">
|
||||
<img src="../../assets/images/settings/light/03.png" alt="mini" class="mode light-img img-fluid btn-border p-0 flex-column" data-setting="sidebar" data-name="sidebar-type" data-value="sidebar-mini">
|
||||
<span class="mt-2">Mini</span>
|
||||
</div>
|
||||
<div class="text-center">
|
||||
<img src="../../assets/images/settings/dark/04.png" alt="hover" class="mode dark-img img-fluid btn-border p-0 flex-column" data-setting="sidebar" data-name="sidebar-type" data-value="sidebar-hover" data-extra-value="sidebar-mini">
|
||||
<img src="../../assets/images/settings/light/04.png" alt="hover" class="mode light-img img-fluid btn-border p-0 flex-column" data-setting="sidebar" data-name="sidebar-type" data-value="sidebar-hover" data-extra-value="sidebar-mini">
|
||||
<span class="mt-2">Hover</span>
|
||||
</div>
|
||||
<div class="text-center">
|
||||
<img src="../../assets/images/settings/dark/05.png" alt="boxed" class="mode dark-img img-fluid btn-border p-0 flex-column" data-setting="sidebar" data-name="sidebar-type" data-value="sidebar-boxed">
|
||||
<img src="../../assets/images/settings/light/05.png" alt="boxed" class="mode light-img img-fluid btn-border p-0 flex-column" data-setting="sidebar" data-name="sidebar-type" data-value="sidebar-boxed">
|
||||
<span class="mt-2">Boxed</span>
|
||||
</div>
|
||||
</div>
|
||||
<hr class="hr-horizontal">
|
||||
<h5 class="mt-4 mb-3">Sidebar Active Style</h5>
|
||||
<div class="d-grid gap-x-3 grid-cols-2 mb-4">
|
||||
<div class="mb-4 text-center">
|
||||
<img src="../../assets/images/settings/dark/06.png" alt="rounded-one-side" class="mode dark-img img-fluid btn-border p-0 flex-column" data-setting="sidebar" data-name="sidebar-item" data-value="navs-rounded">
|
||||
<img src="../../assets/images/settings/light/06.png" alt="rounded-one-side" class="mode light-img img-fluid btn-border p-0 flex-column" data-setting="sidebar" data-name="sidebar-item" data-value="navs-rounded">
|
||||
<span class="mt-2">Rounded One Side</span>
|
||||
</div>
|
||||
<div class="mb-4 text-center">
|
||||
<img src="../../assets/images/settings/dark/07.png" alt="rounded-all" class="mode dark-img img-fluid btn-border p-0 flex-column active" data-setting="sidebar" data-name="sidebar-item" data-value="navs-rounded-all">
|
||||
<img src="../../assets/images/settings/light/07.png" alt="rounded-all" class="mode light-img img-fluid btn-border p-0 flex-column active" data-setting="sidebar" data-name="sidebar-item" data-value="navs-rounded-all">
|
||||
<span class="mt-2">Rounded All</span>
|
||||
</div>
|
||||
<div class="mb-4 text-center">
|
||||
<img src="../../assets/images/settings/dark/08.png" alt="pill-one-side" class="mode dark-img img-fluid btn-border p-0 flex-column" data-setting="sidebar" data-name="sidebar-item" data-value="navs-pill">
|
||||
<img src="../../assets/images/settings/light/09.png" alt="pill-one-side" class="mode light-img img-fluid btn-border p-0 flex-column" data-setting="sidebar" data-name="sidebar-item" data-value="navs-pill">
|
||||
<span class="mt-2">Pill One Side</span>
|
||||
</div>
|
||||
<div class="mb-4 text-center">
|
||||
<img src="../../assets/images/settings/dark/09.png" alt="pill-all" class="mode dark-img img-fluid btn-border p-0 flex-column" data-setting="sidebar" data-name="sidebar-item" data-value="navs-pill-all">
|
||||
<img src="../../assets/images/settings/light/08.png" alt="pill-all" class="mode light-img img-fluid btn-border p-0 flex-column" data-setting="sidebar" data-name="sidebar-item" data-value="navs-pill-all">
|
||||
<span class="mt-2">Pill All</span>
|
||||
</div>
|
||||
</div>
|
||||
<hr class="hr-horizontal">
|
||||
<h5 class="mt-4 mb-3">Navbar Style</h5>
|
||||
<div class="d-grid gap-x-3 grid-cols-2">
|
||||
<div class="mb-4 text-center">
|
||||
<img src="../../assets/images/settings/dark/11.png" alt="image" class="mode dark-img img-fluid btn-border p-0 flex-column" data-setting="navbar" data-target=".iq-navbar" data-name="navbar-type" data-value="nav-glass">
|
||||
<img src="../../assets/images/settings/light/10.png" alt="image" class="mode light-img img-fluid btn-border p-0 flex-column" data-setting="navbar" data-target=".iq-navbar" data-name="navbar-type" data-value="nav-glass">
|
||||
<span class="mt-2">Glass</span>
|
||||
</div>
|
||||
<div class="mb-4 text-center">
|
||||
<img src="../../assets/images/settings/dark/10.png" alt="color" class="mode dark-img img-fluid btn-border p-0 flex-column" data-setting="navbar" data-target=".iq-navbar-header" data-name="navbar-type" data-value="navs-bg-color">
|
||||
<img src="../../assets/images/settings/light/11.png" alt="color" class="mode light-img img-fluid btn-border p-0 flex-column" data-setting="navbar" data-target=".iq-navbar-header" data-name="navbar-type" data-value="navs-bg-color">
|
||||
<span class="mt-2">Color</span>
|
||||
</div>
|
||||
<div class="mb-4 text-center">
|
||||
<img src="../../assets/images/settings/dark/12.png" alt="sticky" class="mode dark-img img-fluid btn-border p-0 flex-column" data-setting="navbar" data-target=".iq-navbar" data-name="navbar-type" data-value="navs-sticky">
|
||||
<img src="../../assets/images/settings/light/12.png" alt="sticky" class="mode light-img img-fluid btn-border p-0 flex-column" data-setting="navbar" data-target=".iq-navbar" data-name="navbar-type" data-value="navs-sticky">
|
||||
<span class="mt-2">Sticky</span>
|
||||
</div>
|
||||
<div class="mb-4 text-center">
|
||||
<img src="../../assets/images/settings/dark/13.png" alt="transparent" class="mode dark-img img-fluid btn-border p-0 flex-column" data-setting="navbar" data-target=".iq-navbar" data-name="navbar-type" data-value="navs-transparent">
|
||||
<img src="../../assets/images/settings/light/13.png" alt="transparent" class="mode light-img img-fluid btn-border p-0 flex-column" data-setting="navbar" data-target=".iq-navbar" data-name="navbar-type" data-value="navs-transparent">
|
||||
<span class="mt-2">Transparent</span>
|
||||
</div>
|
||||
<div class="btn btn-border active col-span-full" data-setting="navbar" data-name="navbar-default" data-value="default">
|
||||
<i class="text-body">
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="18" viewBox="0 0 24 24" fill="currentColor">
|
||||
<circle cx="12" cy="12" r="8" fill="#F5F6FA" stroke="black" stroke-width="3"></circle>
|
||||
</svg>
|
||||
</i>
|
||||
<span class="ms-2 "> Default Navbar</span>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<!-- Library Bundle Script -->
|
||||
<script src="../../assets/js/core/libs.min.js"></script>
|
||||
|
||||
<!-- External Library Bundle Script -->
|
||||
<script src="../../assets/js/core/external.min.js"></script>
|
||||
|
||||
<!-- Widgetchart Script -->
|
||||
<script src="../../assets/js/charts/widgetcharts.js"></script>
|
||||
|
||||
<!-- mapchart Script -->
|
||||
<script src="../../assets/js/charts/vectore-chart.js"></script>
|
||||
<script src="../../assets/js/charts/dashboard.js" ></script>
|
||||
|
||||
<!-- fslightbox Script -->
|
||||
<script src="../../assets/js/plugins/fslightbox.js"></script>
|
||||
|
||||
<!-- Settings Script -->
|
||||
<script src="../../assets/js/plugins/setting.js"></script>
|
||||
|
||||
<!-- Slider-tab Script -->
|
||||
<script src="../../assets/js/plugins/slider-tabs.js"></script>
|
||||
|
||||
<!-- Form Wizard Script -->
|
||||
<script src="../../assets/js/plugins/form-wizard.js"></script>
|
||||
|
||||
<script src="../../assets/js/pages/mc-products-list.js"></script>
|
||||
|
||||
<!-- AOS Animation Plugin-->
|
||||
|
||||
<!-- App Script -->
|
||||
<script src="../../assets/js/hope-ui.js" defer></script>
|
||||
</body>
|
||||
</html>
|
||||
1386
dashboard/products/user-account-setting.html
Normal file
1386
dashboard/products/user-account-setting.html
Normal file
File diff suppressed because it is too large
Load Diff
1401
dashboard/products/user-privacy-setting.html
Normal file
1401
dashboard/products/user-privacy-setting.html
Normal file
File diff suppressed because it is too large
Load Diff
2164
dashboard/products/user-profile.html
Normal file
2164
dashboard/products/user-profile.html
Normal file
File diff suppressed because it is too large
Load Diff
Reference in New Issue
Block a user