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

Admin Home HTML

The document is an ASP.NET web page for an admin dashboard in an Employee Management System. It includes sections for displaying total employees and pending requests, along with buttons to manage these aspects. Additionally, it provides links to various management functionalities such as employee, leave, payroll, performance, and role management.

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)
9 views1 page

Admin Home HTML

The document is an ASP.NET web page for an admin dashboard in an Employee Management System. It includes sections for displaying total employees and pending requests, along with buttons to manage these aspects. Additionally, it provides links to various management functionalities such as employee, leave, payroll, performance, and role management.

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

<%@ Page Title="" Language="C#" MasterPageFile="~/adminMaster.

Master"
AutoEventWireup="true" CodeBehind="adminHome.aspx.cs"
Inherits="EmployeeManagementSystem.Home.adminHome" %>

<asp:Content ID="Content1" ContentPlaceHolderID="MainContent" runat="server">


<head id="Head1">
<meta charset="utf-8" />
<title>Admin Dashboard</title>
<link rel="stylesheet" type="text/css"
href="/css/adminCss/adminHomeDesign.css" />
</head>
<body>
<form id="form1">
<div class="dashboard">
<div class="card">
<h2>Total Employees</h2>
<p id="totalEmployees" runat="server"></p>
<p><asp:Label ID="lblTotalUsers" runat="server"
Text="0"></asp:Label></p>
<asp:Button ID="btnManageEmployees" runat="server" Text="Manage
Employees" CssClass="btn"/>
</div>

<div class="card">
<h2>Pending Requests</h2>
<p id="pendingRequests" runat="server"></p>
<p><asp:Label ID="lblTotalPendingRequest" runat="server"
Text="0"></asp:Label></p>
<asp:Button ID="btnManageRequests" runat="server" Text="Manage
Requests"
CssClass="btn" onclick="btnManageRequests_Click" />
</div>
</div>
</form>
</body>
</asp:Content>

<asp:Content ID="Content2" ContentPlaceHolderID="MainMenu" runat="server">


<a href="http://localhost:41773/admin/employeeManagement.aspx">Employee
Management</a>
<a href="http://localhost:41773/Registration/signUp.aspx">Leave Management</a>
<a href="http://localhost:41773/Registration/signUp.aspx">Payroll
Management</a>
<a href="http://localhost:41773/Registration/signUp.aspx">Performance
Management</a>
<a href="http://localhost:41773/Registration/signUp.aspx">Role and Permission
Management</a>
<asp:Literal ID="litProfile" runat="server" />
</asp:Content>

You might also like