-
Notifications
You must be signed in to change notification settings - Fork 0
/
home.php
118 lines (109 loc) · 3.8 KB
/
home.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
<html>
<head>
<title>
Student Information Home Page
</title>
<link rel="icon" type="image/x-icon" href="images/logo.png" sizes="32x32"/>
<style>
body{
font-family: Arial, Helvertica, sans-serif;
background-image: url("images/5.jpg");
}
h1{
text-align: center;
}
p{
text-align: center;
}
#registerbtn{
background-color: rgb(215, 240, 240);
color:black;
padding: 10px 10px;
margin: 13px;
cursor: pointer;
width:43%;
opacity: 0.9;
}
#registerbtn:hover{
opacity: 1;
}
#login{
text-align: left;
float:left;
background-repeat: no-repeat;
width:40%;
background-size: 110% 120%;
}
.right{
float: right;
}
.left{
float: left;
}
#homebut{
margin-left: 30px ;
margin-top:50px;
background-color: rgb(45, 93, 155);
color: whitesmoke;
}
#logbtn{
margin-right: 30px;
margin-top:50px;
background-color: rgb(45, 93, 155);
color: whitesmoke;
}
#img{
margin-left:350px;
}
marquee{
margin-left:480px;
margin-right:430px;
}
#image{
float:right;
width:60%;
}
a{
color: whitesmoke;
}
</style>
</head>
<body>
<img id="img" src="images/logo1.png" alt="logo" width="600" height="110">
<span>
<button type="submit" class="left" id="homebut" style="width: 100px;height: 35px;"><b><i><a href="home.php" >Home</a></i></b></button>
<button type="submit" class="right" id="logbtn" style="width: 100px;height: 35px;"><b><i><a href="loginpage.php" >Logout</a></i></b></button>
<marquee direction="left">
<h4>Welcome to AMIT Admin Portal ..! </h4>
</marquee>
</span>
<br>
<br>
<hr>
</div>
<div id="login">
<form>
<button type="submit" formaction="ADD.php" id="registerbtn">Insert Data</button>
<br>
<button type="submit" formaction="UPDATE.php" id="registerbtn">Update Data</button>
<br>
<button type="submit" formaction="attendence.php" id="registerbtn">Attendance</button>
<br>
<button type="submit" formaction="cgpa.php" id="registerbtn">CGPA</button>
<br>
<button type="submit" formaction="clubsnchapter.php" id="registerbtn">Clubs and Chapter</button>
<br>
<button type="submit" formaction="transport.php" id="registerbtn">Transport</button>
<br>
<button type="submit" formaction="hostel.php" id="registerbtn">Hosteller/Day Scholar</button>
<br>
<button type="submit" formaction="fees.php" id="registerbtn">Fees</button>
<br>
<button type="submit" formaction="Delete.php" id="registerbtn">Delete Data</button>
</form>
</div>
<div id="image">
<img src="images/campus.png" alt="campus" width="100%" height="80%">
</div>
</body>
</html>