373 lines
8.8 KiB
PHP
Executable File
373 lines
8.8 KiB
PHP
Executable File
<?php
|
|
require 'require_login.php';
|
|
include 'static.php';
|
|
?>
|
|
<!doctype html>
|
|
<html lang="en">
|
|
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
|
<title>ShreeBhattJi</title>
|
|
<script src="chart.js"></script>
|
|
|
|
<style>
|
|
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&display=swap');
|
|
|
|
:root {
|
|
--bg: #020617;
|
|
--panel: #0f172a;
|
|
--panel2: #020617;
|
|
--accent: #38bdf8;
|
|
--accent2: #6366f1;
|
|
--text: #e5e7eb;
|
|
--muted: #94a3b8;
|
|
--border: rgba(255, 255, 255, .08);
|
|
--radius: 14px;
|
|
}
|
|
|
|
* {
|
|
box-sizing: border-box
|
|
}
|
|
|
|
body {
|
|
margin: 0;
|
|
font-family: Inter, system-ui;
|
|
background: var(--bg);
|
|
color: var(--text);
|
|
}
|
|
|
|
/* HEADER */
|
|
|
|
.top-header-1 {
|
|
position: fixed;
|
|
top: 0;
|
|
left: 0;
|
|
right: 0;
|
|
height: 48px;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
background: #020617;
|
|
border-bottom: 1px solid var(--border);
|
|
z-index: 1002;
|
|
font-size: 18px;
|
|
font-weight: 600;
|
|
}
|
|
|
|
.top-header-1 a {
|
|
text-decoration: none;
|
|
background: linear-gradient(90deg, var(--accent), var(--accent2));
|
|
-webkit-background-clip: text;
|
|
color: transparent;
|
|
}
|
|
|
|
.top-header-2 {
|
|
position: fixed;
|
|
top: 48px;
|
|
left: 0;
|
|
right: 0;
|
|
height: 42px;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
gap: 26px;
|
|
background: #020617;
|
|
border-bottom: 1px solid var(--border);
|
|
z-index: 1001;
|
|
font-size: 14px;
|
|
}
|
|
|
|
.top-header-2 a {
|
|
color: var(--muted);
|
|
text-decoration: none;
|
|
transition: .25s;
|
|
}
|
|
|
|
.top-header-2 a:hover {
|
|
color: var(--text)
|
|
}
|
|
|
|
.site-header {
|
|
position: fixed;
|
|
top: 90px;
|
|
left: 0;
|
|
right: 0;
|
|
height: 54px;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
background: rgba(2, 6, 23, .85);
|
|
backdrop-filter: blur(10px);
|
|
border-bottom: 1px solid var(--border);
|
|
z-index: 1000;
|
|
}
|
|
|
|
.site-header nav {
|
|
display: flex;
|
|
gap: 26px;
|
|
flex-wrap: wrap;
|
|
}
|
|
|
|
.site-header a {
|
|
color: var(--muted);
|
|
text-decoration: none;
|
|
font-size: 14px;
|
|
transition: .25s;
|
|
}
|
|
|
|
.site-header a:hover {
|
|
color: var(--text)
|
|
}
|
|
|
|
/* PAGE OFFSET */
|
|
|
|
.page-wrap {
|
|
padding-top: 150px;
|
|
}
|
|
|
|
/* CONTAINERS */
|
|
|
|
.container,
|
|
.containerindex {
|
|
max-width: 1100px;
|
|
margin: 30px auto;
|
|
padding: 24px;
|
|
background: linear-gradient(180deg, var(--panel), var(--panel2));
|
|
border: 1px solid var(--border);
|
|
border-radius: var(--radius);
|
|
box-shadow: 0 20px 60px rgba(0, 0, 0, .5);
|
|
}
|
|
|
|
/* GRID */
|
|
|
|
.grid {
|
|
display: grid;
|
|
gap: 20px;
|
|
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
|
|
}
|
|
|
|
/* CARD */
|
|
|
|
.card {
|
|
padding: 18px;
|
|
border-radius: var(--radius);
|
|
background: rgba(255, 255, 255, .02);
|
|
border: 1px solid var(--border);
|
|
}
|
|
|
|
.card.wide {
|
|
grid-column: 1/-1;
|
|
}
|
|
|
|
.card h3 {
|
|
margin: 0 0 14px;
|
|
font-size: 16px;
|
|
font-weight: 600;
|
|
}
|
|
|
|
/* DROPDOWNS */
|
|
|
|
.dropdown-container {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 14px;
|
|
margin-bottom: 14px;
|
|
flex-wrap: wrap;
|
|
}
|
|
|
|
.dropdown-label {
|
|
font-size: 14px;
|
|
color: var(--muted);
|
|
min-width: 160px;
|
|
}
|
|
|
|
.dropdown select {
|
|
padding: 10px 14px;
|
|
border-radius: 10px;
|
|
border: 1px solid var(--border);
|
|
background: #020617;
|
|
color: var(--text);
|
|
font-size: 14px;
|
|
outline: none;
|
|
}
|
|
|
|
/* INPUT */
|
|
|
|
.input-group {
|
|
position: relative;
|
|
margin-bottom: 18px;
|
|
}
|
|
|
|
.input-group input {
|
|
width: 100%;
|
|
padding: 14px 12px;
|
|
border-radius: 10px;
|
|
border: 1px solid var(--border);
|
|
background: #020617;
|
|
color: var(--text);
|
|
font-size: 14px;
|
|
outline: none;
|
|
}
|
|
|
|
.input-group input:focus {
|
|
border-color: var(--accent);
|
|
box-shadow: 0 0 0 2px rgba(56, 189, 248, .15);
|
|
}
|
|
|
|
.input-group label {
|
|
position: absolute;
|
|
left: 12px;
|
|
top: 50%;
|
|
transform: translateY(-50%);
|
|
font-size: 13px;
|
|
color: var(--muted);
|
|
background: #020617;
|
|
padding: 0 6px;
|
|
transition: .25s;
|
|
}
|
|
|
|
.input-group input:focus+label,
|
|
.input-group input:not(:placeholder-shown)+label {
|
|
top: -7px;
|
|
font-size: 11px;
|
|
color: var(--accent);
|
|
}
|
|
|
|
/* BUTTON */
|
|
|
|
button[type="submit"] {
|
|
background: linear-gradient(90deg, #ef4444, #dc2626);
|
|
color: white;
|
|
padding: 12px 24px;
|
|
border: none;
|
|
border-radius: 10px;
|
|
font-weight: 600;
|
|
cursor: pointer;
|
|
}
|
|
|
|
button[type="submit"]:hover {
|
|
opacity: .9;
|
|
}
|
|
|
|
/* FOOTER */
|
|
|
|
.site-footer {
|
|
margin-top: 40px;
|
|
padding: 20px 16px;
|
|
display: flex;
|
|
justify-content: center;
|
|
}
|
|
|
|
.footer-box {
|
|
width: 100%;
|
|
max-width: 1100px;
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
gap: 16px;
|
|
padding: 16px 22px;
|
|
border-radius: var(--radius);
|
|
background: linear-gradient(180deg, #0f172a, #020617);
|
|
border: 1px solid var(--border);
|
|
box-shadow: 0 10px 35px rgba(0, 0, 0, .45);
|
|
font-size: 14px;
|
|
color: #cbd5e1;
|
|
}
|
|
|
|
.footer-box strong {
|
|
color: #e2e8f0
|
|
}
|
|
|
|
.phone {
|
|
text-decoration: none;
|
|
color: #38bdf8;
|
|
font-weight: 500;
|
|
}
|
|
|
|
.phone:hover {
|
|
text-decoration: underline
|
|
}
|
|
|
|
.muted {
|
|
color: #94a3b8
|
|
}
|
|
|
|
.heart {
|
|
color: #ef4444;
|
|
animation: pulse 1.4s infinite;
|
|
}
|
|
|
|
@keyframes pulse {
|
|
0% {
|
|
opacity: .6
|
|
}
|
|
|
|
50% {
|
|
opacity: 1
|
|
}
|
|
|
|
100% {
|
|
opacity: .6
|
|
}
|
|
}
|
|
|
|
/* MOBILE */
|
|
|
|
@media(max-width:700px) {
|
|
.site-header nav {
|
|
gap: 16px
|
|
}
|
|
|
|
.top-header-2 {
|
|
flex-wrap: wrap;
|
|
height: auto;
|
|
padding: 8px
|
|
}
|
|
|
|
.page-wrap {
|
|
padding-top: 180px
|
|
}
|
|
|
|
.footer-box {
|
|
flex-direction: column;
|
|
text-align: center;
|
|
}
|
|
}
|
|
</style>
|
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<!-- HEADER ROW 1 -->
|
|
<header class="top-header-1">
|
|
<a href="index.php">URMI Universal Digital Encoder / Decoder</a>
|
|
</header>
|
|
|
|
<!-- HEADER ROW 2 -->
|
|
<header class="top-header-2">
|
|
<a href="https://learn.urmic.org/" target="_blank">Tutorials</a>
|
|
<a href="about_us.php">About Us</a>
|
|
<a href="contact_us.php">Contact</a>
|
|
<a href="premium_service.php">Premium</a>
|
|
<a href="domain.php">Domain SSL</a>
|
|
</header>
|
|
|
|
<!-- HEADER ROW 3 -->
|
|
<header class="site-header">
|
|
<nav>
|
|
<a href="status.php">Status</a>
|
|
<a href="index.php">Monitor</a>
|
|
<a href="input.php">Input</a>
|
|
<a href="output.php">Output</a>
|
|
<a href="network.php">Network</a>
|
|
<a href="firewall.php">Firewall</a>
|
|
<a href="firmware.php">Firmware</a>
|
|
<a href="password.php">Password</a>
|
|
<a href="logout.php">Logout</a>
|
|
</nav>
|
|
</header>
|
|
|
|
<!-- PAGE CONTENT WRAPPER -->
|
|
<div class="page-wrap">
|