56 lines
1.8 KiB
PHP
Executable File
56 lines
1.8 KiB
PHP
Executable File
<!-- header.php -->
|
|
<?php
|
|
|
|
/*
|
|
Urmi you happy me happy licence
|
|
|
|
Copyright (c) 2026 shreebhattji
|
|
|
|
License text:
|
|
https://github.com/shreebhattji/Urmi/blob/main/licence.md
|
|
|
|
*/
|
|
|
|
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 - URMI Digital Transcoder</title>
|
|
<script src="chart.js"></script>
|
|
<link rel="stylesheet" href="style.css">
|
|
<link rel="stylesheet" href="all.min.css">
|
|
</head>
|
|
|
|
<body>
|
|
<header class="top-header-1">
|
|
<a href="index.php" style="color:white; text-decoration:none;">
|
|
<i class="fas fa-robot"></i> URMI Digital Transcoder
|
|
</a>
|
|
</header>
|
|
<header class="top-header-2">
|
|
<nav aria-label="Top navigation">
|
|
<a href="about_us.php"><i class="fas fa-graduation-cap"></i> Tutorials</a>
|
|
<a href="about_us.php"><i class="fas fa-info-circle"></i> About Us</a>
|
|
<a href="contact_us.php"><i class="fas fa-envelope"></i> Contact Us</a>
|
|
<a href="premium_service.php"><i class="fas fa-crown"></i> Premium Service</a>
|
|
</nav>
|
|
</header>
|
|
|
|
<header class="site-header">
|
|
<nav aria-label="Top navigation">
|
|
<a href="input.php"><i class="fas fa-file-upload"></i> Input</a>
|
|
<a href="index.php"><i class="fas fa-tachometer-alt"></i> Monitor</a>
|
|
<a href="network.php"><i class="fas fa-shield-alt"></i> Network</a>
|
|
<a href="firmware.php"><i class="fas fa-microchip"></i> Firmware</a>
|
|
<a href="password.php"><i class="fas fa-lock"></i> Password</a>
|
|
<a href="logout.php"><i class="fas fa-sign-out-alt"></i> Logout</a>
|
|
</nav>
|
|
</header>
|
|
</body>
|
|
|
|
</html>
|