-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcolgreg.php
65 lines (61 loc) · 2.11 KB
/
colgreg.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
<html>
<head>
<title>HOME</title>
<title>College Search</title>
<style>
*{
margin: 0px;
padding: 0px;
}
#head{
width: 100%;
height: 120px;
background-color: forestgreen;
}
.top
{
font-size: 50;
margin-left: 350px;
margin-top: 300px;
}
.bottom
{
margin-left: 430px;
font-size: 30;
margin-bottom: 20px;
}
.foot{
width: 100%;
height: 30px;
position: relative;
background-color: forestgreen;
margin-top: 10%;
}
</style>
</head>
<body style="background-color: gray;">
<div id='head'>
<font class='top'>Search Colleges according to your marks</font>
<br>
<font class="bottom">(Boards / JEE(Mains + Advance) / NEET / AIIMS)</font>
</div>
<center>
<div style="margin-top: 200px; height: 220px; width: 280px; background-color: powderblue">
<form action="colgadmin.php" method="post">
<h3><u>Login to College Portal</u></h3>
<br>
<input type="text" id="t1" name="t1" placeholder="Enter your e-mail" size="28" style="background-color: darkorange; height: 28px ">
<br>
<br>
<input type="password" id="t2" name="t2" placeholder="Enter password" size="28" style="background-color: darkgrey; height: 28px">
<br>
<br>
<center><input type="submit" value="Login" style="background-color: lightgreen"></center><br>
</form>
</div>
<footer class="foot">
<p><center><b>@copyright | Designed by Innovation Technology</b></center></p>
</footer>
</center>
</body>
</html>