-
Notifications
You must be signed in to change notification settings - Fork 6
/
Department.php
115 lines (95 loc) · 4.79 KB
/
Department.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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
<?php
include_once 'header_h.php';
?>
<?php
include_once 'roles.php';
?>
<script language="javascript" src="validation.js"></script>
<script language="javascript">
function validate_form(f1) {
if (isEmpty(f1.departmentname.value, "Department Name")) {
alert(errMsg);
f1.departmentname.focus();
return (false);
}
if (isEmpty(f1.createddate.value, "Created Date")) {
alert(errMsg);
f1.createddate.focus();
return (false);
}
if (isEmpty(f1.modifieddate.value, "Modified Date")) {
alert(errMsg);
f1.modifieddate.focus();
return (false);
}
if (isEmpty(f1.status.value, "Status")) {
alert(errMsg);
f1.status.focus();
return (false);
}
}
</script>
<form action="department_add.php" method="post" onSubmit="return validate_form(this)">
<section class="content">
<div class="container-fluid">
<div class="block-header">
<h2>DEPARTMENT</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">
<input type="hidden" name="departmentid" class="form-control" />
<h2 class="card-inside-title">Department Name:</h2>
<div class="row clearfix">
<div class="col-sm-12">
<div class="form-group">
<div class="form-line">
<input type="text" name="departmentname" class="form-control" />
</div>
</div>
<h2 class="card-inside-title">Created Date:</h2>
<div class="row clearfix">
<div class="col-sm-12">
<div class="form-group">
<div class="form-line">
<input type="date" class="form-control date" name="createddate"
placeholder="Ex: 30/07/2016">
</div>
</div>
<h2 class="card-inside-title">Modified Date:</h2>
<div class="row clearfix">
<div class="col-sm-12">
<div class="form-group">
<div class="form-line">
<input type="date" class="form-control date"
name="modifieddate" placeholder="Ex: 30/07/2016">
</div>
</div>
<h2 class="card-inside-title">Status:</h2>
<div class="row clearfix">
<div class="col-sm-12">
<div class="form-group">
<div class="form-line">
<input type="text" name="status"
class="form-control" />
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<center><input class="btn btn-primary waves-effect" name="submit" type="submit"
value="SUBMIT">
<input type="reset" name="close" class="btn btn-primary waves-effect"
value="RESET">
</center>
</section>
</form>
<?php
include_once 'footer_h.php';
?>