#4 How To Make Admin Panel Using Html, Css & Bootstrap | Student Management System Project in PHP

preview_player
Показать описание
#html #adminpanelhtml

Support This Channel :

Join this channel to get access to perks:

Your support will be really appreciated.

Thanks For Watching.

I hope This video was helpful.

If you have any questions then let me know in the comment section.

Best of luck.

#webtechknowledge

You can connect with me with the given links below:

Join this channel to get access to perks:

Follow me on :
Рекомендации по теме
Комментарии
Автор

Source Code Here :


code for admin panel



<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Admin Dashboard</title>

<link rel="stylesheet" type="text/css" href="admin.css">

<!-- Latest compiled and minified CSS -->

<!-- Optional theme -->

<!-- Latest compiled and minified JavaScript -->
</head>
<body>

<header class="header">

<a href="">Admin Dashboard</a>

<div class="logout">

<a href="logout.php" class="btn btn-primary">Logout</a>

</div>

</header>


<aside>

<ul>

<li>
<a href="">Admission</a>
</li>

<li>
<a href="">Add Student</a>
</li>

<li>
<a href="">View Student</a>
</li>

<li>
<a href="">Add Teacher</a>
</li>

<li>
<a href="">View Teacher</a>
</li>
<li>
<a href="">Add Courses</a>
</li>
<li>
<a href="">View Courses</a>
</li>


</ul>


</aside>


<div class="content">

<h1>Sidebar Accordion</h1>

<p>In this example, we have added an accordion and a dropdown menu inside the side navigation.

Click on both to understand how they differ from each other. The accordion will push down the content, while the dropdown lays over the content.</p>

<input type="text" name="">


</div>

</body>
</html>



Code For Css



*
{
margin: 0px;
padding: 0px;
}

.header
{

background-color: skyblue;
line-height: 70px;
padding-left: 30px;
}

a, a:hover
{
text-decoration: none!important;
}

.logout
{
float: right;
padding-right: 30px;
}

ul
{
background-color: #424a5b;
width: 16%;
height: 100%;
position: fixed;
padding-top: 5%;
text-align: center;
}

ul li
{
list-style: none;
padding-bottom: 30px;
font-size: 15px;
}

ul li a
{
color: white;
font-weight: bold;
}

ul li a:hover
{
color: skyblue;
text-decoration: none;
}

.content
{
margin-left: 20%;
margin-top: 5%;
}



Thanks for Watching

I would really appeciate If you Subscribe this channel

WebTechKnowledge
Автор

hi..when i try opening my admin dashboard (after inputing the username and password) it is taking me back to the login form saying user name or password do not match

bensonteyie
Автор

how can i make aside on the right side like the left side?

Prod.K.O
Автор

You have done a great job sir.inperfectly understand everything....but... expect that logout page .. because u didn't explain..how you create that page...

Bm-pljh
Автор

i get error the css ..why?? the code are same

nurmaisarah
Автор

You have the perfect web 👍 application can you make for announcement system

patrickngowi
Автор

Sir the logout option is not in header section in my screen.. Why?
The codes are same..
Please reply.

amitkabiraj