-
Notifications
You must be signed in to change notification settings - Fork 0
/
student.php
77 lines (74 loc) · 3.08 KB
/
student.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
<html>
<head>
<link rel="stylesheet" href="css/style.css"/>
<title>Student Attendance</title>
<link rel="stylesheet" href="css/bootstrap.min.css">
<link rel="stylesheet" href="css/bootstrap-theme.min.css">
<link rel="stylesheet" href="css/c3.css">
<script src="js/jquery.min.js"></script>
<script src="js/bootstrap.min.js"></script>
<script src="js/highcharts.js"></script>
<script src="js/highcharts-exporting.js"></script>
<script src="js/jquery.knob.js"></script>
<script src="js/student.js"></script>
<!-- Custom styles for this template -->
<link href="navbar-fixed-top.css" rel="stylesheet">
</head>
<body>
<!-- Fixed navbar -->
<nav class="navbar navbar-inverse navbar-fixed-top">
<div class="container">
<div class="navbar-header">
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#navbar" aria-expanded="false" aria-controls="navbar">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="index.php">Online Attendance</a>
</div>
<div id="navbar" class="navbar-collapse collapse">
<ul class="nav navbar-nav navbar-right">
<li class="active"><a href="#">Home</a></li>
<li><a href="#about">About</a></li>
<li><a href="#contact">Contact</a></li>
</ul>
</div><!--/.nav-collapse -->
</div>
</nav></br></br></br></br></br></br></br></br></br>
<div class="container">
<div id="output"></div>
<form id="getAttendance">
<div class="form-group">
<label>Year of course</label>
<select name="year" class="form-control">
<?php foreach(range(date('Y',time()),1983) as $r) echo '<option>'.$r.'</option>'; ?>
</select>
</div>
<div class="form-group">
<label>Section</label>
<select name="section" class="form-control">
<option>1</option><option>2</option><option>3</option>
</select>
</div>
<div class="form-group">
<label>Subject Code of Course</label>
<input type="text" class="form-control" name="code" placeholder="Eg - COE-216">
<span class="help-block">DDD-NNN where D : Department , N : Number</span>
</div>
<div class="form-group">
<label>Roll Number</label>
<input type="text" class="form-control" name="roll" placeholder="Eg - 262/CO/12">
<span class="help-block">NNN/DD/YY where N : Number, D : Department , Y : Year</span>
</div>
<button class="btn btn-primary">Get Results</button>
</form>
</div>
</div><!-- /.container -->
<!-- FOOTER -->
<footer style="background:; height:;">
<p class="pull-right"><a href="#">Back to top</a></p>
<p>© 2017 ProjectWorlds, Inc. · developed by <a href="https://facebook.com/yugesh.verma.35">Yugesh Verma </a><a href="http://projectworlds.in">Privacy</a> · <a href="http://projectworlds.in">Terms</a></p>
</footer>
</body>
</html>