0% found this document useful (0 votes)
14 views1 page

Admin Master HTML

The document is an ASP.NET master page for an Employee Management System, featuring a header with an admin greeting and a menu for navigation. It includes placeholders for dynamic content in the main section and a footer with copyright information. The page links to a CSS stylesheet for design and uses XHTML for structure.

Uploaded by

kneelgames
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
14 views1 page

Admin Master HTML

The document is an ASP.NET master page for an Employee Management System, featuring a header with an admin greeting and a menu for navigation. It includes placeholders for dynamic content in the main section and a footer with copyright information. The page links to a CSS stylesheet for design and uses XHTML for structure.

Uploaded by

kneelgames
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
You are on page 1/ 1

<%@ Master Language="C#" AutoEventWireup="true" CodeBehind="adminMaster.master.

cs"
Inherits="EmployeeManagementSystem.adminMaster" %>

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"


"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

<html xmlns="http://www.w3.org/1999/xhtml">
<head id="Head1" runat="server">
<title>Employee Management System</title>
<link rel="stylesheet" type="text/css" href="/css/masterPageDesign.css" />
</head>
<body>
<form id="Form1" runat="server">
<!-- Header -->
<header>
<div><a href="http://localhost:41773/Home/adminHome.aspx">Hello,
Admin</a></div>
<div class="menu">
<button>
<img src="/images/accountIcon.png" alt="Menu" class="menu-icon"
/>
</button>
<div class="menu-content">
<asp:ContentPlaceHolder ID="MainMenu" runat="server">
<!-- This is where the profile link or menu will be
rendered -->
</asp:ContentPlaceHolder>
<!--<a
href="http://localhost:41773/Registration/login.aspx">Login</a>
<a href="http://localhost:41773/Registration/signUp.aspx">Sign
Up</a> -->
</div>
</div>
</header>

<!-- Main Content -->


<main>
<asp:ContentPlaceHolder ID="MainContent"
runat="server"></asp:ContentPlaceHolder>
</main>

<!-- Footer -->


<footer>
&copy; 2024 EMS
</footer>
</form>
</body>
</html>

You might also like