-
Notifications
You must be signed in to change notification settings - Fork 4
/
index.html
executable file
·81 lines (81 loc) · 3.48 KB
/
index.html
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
<!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 http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Exam Cell Automation</title>
<link rel="stylesheet" href="css/bootstrap.min.css">
<link rel="stylesheet" href="css/bootstrap-theme.min.css">
<link href="css/style.css" rel="stylesheet" type="text/css" />
<script src="js/bootstrap.min.js"></script>
</head>
<body>
<div class="content">
<div class="header">
<div class="container-fluid">
<div class="row">
<div class="col-xs-12 col-sm-6 col-md-4 col-lg-4"> <img src="img/logo.png" alt="Exam Cell Automation" title="Exam Cell Automation"/> </div>
<div class="col-xs-12 col-sm-6 col-md-8 col-lg-8">
<nav class="main_menu">
<ul>
<li class="active"><a href="#">Home</a></li>
<li><a href="#">Previous Arrangements</a></li>
<li><a href="#">Help</a></li>
</ul>
</nav>
</div>
</div>
</div>
</div>
<div class="clearfix"></div>
<div class="page_content">
<div class="container-fluid">
<div class="row">
<div class="hidden-xs col-sm-1 col-md-2 col-lg-2"> </div>
<div class="col-xs-12 col-sm-10 col-md-8 col-lg-8">
<form action="generate.php?step=1" method="post" enctype="application/x-www-form-urlencoded">
<div class="form-group row">
<label for="input_no_of_exam_days" class="col-sm-3 form-control-label">No. of Exam Days</label>
<div class="col-sm-9">
<input type="text" class="form-control" id="no_exam_days" name="no_exam_days" placeholder="No. of Exam Days" required="required">
</div>
</div>
<div class="form-group row">
<label for="input_no_of_classes" class="col-sm-3 form-control-label">No. of Classes / Batches</label>
<div class="col-sm-9">
<input type="text" class="form-control" id="no_classes" name="no_classes" placeholder="No. of Classes / Batches" required="required">
</div>
</div>
<div class="form-group row">
<label for="input_no_of_class_rooms" class="col-sm-3 form-control-label">No. of Available Classrooms</label>
<div class="col-sm-9">
<input type="text" class="form-control" id="no_class_rooms" name="no_class_rooms" placeholder="No. of Available Classrooms" required="required">
</div>
</div>
<center>
<div class="form-group row">
<input class="btn btn-warning" type="reset" value="Reset" name="Reset"/>
<input class="btn btn-success" type="submit" value="Submit" name="Submit"/>
</div>
</center>
</form>
</div>
<div class="hidden-xs col-sm-1 col-md-2 col-lg-2"> </div>
</div>
</div>
</div>
</div>
<footer>
<div class="container-fluid">
<div class="row-fluid">
<div class="col-md-6">
<ul>
<li><a href="mailto:mail4sujimathew@gmail.com">Support</a></li>
<li><a href="credits.php">Credits</a></li>
</ul>
</div>
<div class="col-md-6 text-right copyright"> Developed by <a href="#">Department of CSE, CEC</a> </div>
</div>
</div>
</footer>
</body>
</html>