-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhome.jsp
77 lines (68 loc) · 3.66 KB
/
home.jsp
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
<%--
Document : index
Created on : Oct 21, 2013, 6:16:47 PM
Author : ICT
--%>
<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %>
<%
String fuser = (String)session.getAttribute("facultyname");
String user = (String)session.getAttribute("studentid");
%>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta name="description" content="On-line Exam System is very useful for Educational Institute to prepare an exam, save the time that will take to check the paper and prepare mark sheets. It will help the Institute to testing of students and develop their skills. But the disadvantages for this system, it takes a lot of times when you prepare the exam at the first time for usage. And we are needs number of computers with the same number of students."/>
<meta name="keywords" content="profile,quiz,online,exam,contest,codeshare,student,paper,faculty,give,make,delete" />
<meta name="author" content="Abdul Qadir Faridi & Pankaj Chaudhary" />
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Home ExamShow</title>
<link href="style.css" rel="stylesheet" type="text/css" />
<script type="text/javascript" src="assets/js/jquery.js"></script>
<script type="text/javascript" src="assets/js/jquery-1.7.1.min.js"></script>
<script type="text/javascript" src="assets/js/jquery.validate.min.js"></script>
</head>
<body>
<script type="text/javascript" src="assets/js/bootstrap-button.js"></script>
<script type="text/javascript" src="assets/js/bootstrap-tab.js"></script>
<script type="text/javascript" src="assets/js/modal.js"></script>
<%
if(user != null ||fuser!=null)
{%>
<%@include file="header1.jsp" %>
<% }
else
{%>
<%@ include file="header.jsp" %>
<% }
%>
<div class="container well">
<div class="row">
<div class="span2">
<ul class="nav nav-tabs nav-stacked nav-justified" style='background-color:white;'>
<li>
<a href="#" data-toggle="tab">Home</a>
</li>
<li>
<a href="#" data-toggle="tab">Online Exam System</a>
</li>
<li>
<a href="./<%=session.getAttribute("which")%>profile.jsp">Profile</a>
</li>
</ul>
</div>
<div class="span10">
<center> <img src="assets/img/back.png" alt="Online Exam System" height="300px" width="400px"/> </center>
<p style="font-weight: bold;font-size:20px;color:#808080;line-height: 25px;">
<bold style="color:black;">On-line Exam System</bold> is very useful for Educational Institute to prepare an exam, safe the time that will take to check the paper and prepare mark sheets. It will help the Institute to testing of students and develop their skills. But the disadvantages for this system, it takes a lot of times when you prepare the exam at the first time for usage. And we are needs number of computers with the same number of students.
</p>
<p style="font-weight: bold;font-size:20px;color:#808080;line-height: 25px;" >
The effective use of "On-line Exam System", any Educational Institute or training centers can be use it to develop their strategy for putting the exams, and for getting better results in less time.
</p>
</div>
</div>
<br/><br/>
</div>
<br/><br/><br/><br/>
<%@include file="footer.jsp" %>
</body>
</html>