-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.php
44 lines (42 loc) · 1.51 KB
/
index.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
<html>
<head>
<title>Student Result Management System</title>
<link rel="stylesheet" href="csss/style.css" type="text/css">
<link href="https://fonts.googleapis.com/css?family=Flamenco" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/animate.css/3.7.0/animate.min.css">
</head>
<body>
<header>
<nav>
<div class="row clearfix">
<ul class="main-nav" animate slideInDown>
<li><a href="index.php">HOME</a></li>
<li><a href="admin/aboutus.php">ABOUT</a></li>
<li><a href="admin/contactus.php">CONTACT</a></li>
<li><a href="login.php">ADMIN LOGIN</a></li>
</ul>
</div>
</nav>
<div class="main-content-header">
<form method="post" action="result.php">
<table class="table">
<br>
<h2 class="search">GET YOUR RESULT HERE!</h2>
<br><br>
<tr>
<th class="name1">Rollno</th>
<td class="name2"><input type="text" name="rollno" required class="box1"/></td>
</tr>
<tr>
<th class="standered1">Standard</th>
<td class="standered2"><input type="text" name="std" required class="box2"/></td>
</tr>
<tr>
<td align="center" colspan="2"><input type="submit" name="submit" value="SUBMIT" class="submit"/></td>
</tr>
</table>
</form>
</div>
</header>
</body>
</html>