This commit is contained in:
2025-02-05 03:51:15 +05:30
parent c4c8ba334e
commit 7977ddc04e
31 changed files with 643 additions and 513 deletions

View File

@@ -1,5 +1,7 @@
<?php
session_start();
error_reporting(E_ALL);
ini_set('display_errors', 1);
if (!isset($_SESSION['user_id'])) {
header("Location: login.php");
exit();
@@ -11,7 +13,7 @@ if (!isset($_SESSION['user_id'])) {
<head>
<meta charset="UTF-8">
<meta charset="UTF-8">
<title>Dashboard</title>
<title>Account</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="Xeorl - The All-In-One, Fully Free to Use Advanced Link Shortener and Management Tool - Equipped with Multi-layered URL encryption, URL metadata remover, Mass shrinker, Quick link and Many more! - Powered by @xodivorce...">
<link rel="icon" type="image/png" href="./assets/images/favicon-96x96.png" sizes="96x96" />
@@ -23,8 +25,7 @@ if (!isset($_SESSION['user_id'])) {
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap" rel="stylesheet">
<link rel="stylesheet" href="assets/css/_home.css">
<link rel="stylesheet" href="assets/css/_dashboard.css">
<link rel="stylesheet" href="assets/css/_monetization.css">
</head>
<body>
<?php include "assets/_header.php"; ?>