-
Notifications
You must be signed in to change notification settings - Fork 6
/
gen_report.php
69 lines (67 loc) · 2.39 KB
/
gen_report.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
<?php
include_once 'header_h.php';
include_once 'roles.php';
?>
<script language="javascript" src="validation.js"></script>
<script language="javascript">
function str_check(event) {
code = event.keyCode;
if (!((code >= 65 && code <= 90) || (code >= 97 && code <= 122) || (code == 32))) {
alert("Please Enter Only Characters");
event.keyCode = 0;
}
}
function num_check(event) {
code = event.keyCode;
if (!((code >= 48 && code <= 57))) {
alert("Please Enter Only Numbers");
event.keyCode = 0;
}
}
function validate_form(f1) {
if (isEmpty(f1.employeeid.value, "Employee Id")) {
alert(errMsg);
f1.employeeid.focus();
return (false);
}
if (isEmpty(f1.employeename.value, "Employee Name")) {
alert(errMsg);
f1.employeename.focus();
return (false);
}
}
</script>
<form action="report.php" method="post" onSubmit="return validate_form(this)">
<section class="content">
<div class="container-fluid">
<div class="block-header">
<h2>GENERATE REPORT</h2>
</div>
<!-- Input -->
<div class="row clearfix">
<div class="col-lg-12 col-md-12 col-sm-12 col-xs-12">
<div class="card">
<div class="body">
<h2 class="card-inside-title">Employee Id:</h2>
<div class="row clearfix">
<div class="col-sm-12">
<div class="form-group">
<div class="form-line">
<input type="text" name="employeeid" class="form-control" onKeyPress="num_check(event)" />
</div>
</div>
</div>
</div>
<center>
<input class="btn btn-primary waves-effect" name="submit" type="submit" value="GENERATE REPORT">
</center>
</div>
</div>
</div>
</div>
</div>
</section>
</form>
<?php
include_once 'footer_h.php';
?>