forked from hewagekasunthilina/Pharmacy-Management-System
-
Notifications
You must be signed in to change notification settings - Fork 0
/
employeeonereport.php
148 lines (119 loc) · 5.99 KB
/
employeeonereport.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
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta http-equiv="x-ua-compatible" content="ie=edge">
<title>Electricity Bill | Nimedco Pharmacy</title>
<!-- Font Awesome -->
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.8.2/css/all.css">
<!-- Bootstrap core CSS -->
<link href="css/bootstrap.min.css" rel="stylesheet">
<!-- Material Design Bootstrap -->
<link href="css/mdb.min.css" rel="stylesheet">
<!-- Your custom styles (optional) -->
<link href="css/style.css" rel="stylesheet">
<!--Form validation-->
<script src = "js/expenditure.js"> </script>
<!--Datepicker validate-->
<script src = "expendituredate.js"></script>
</head>
<body onload=enable_text(false);>
<!--Header-->
<!--Navbar-->
<nav class="navbar navbar-expand-lg navbar-dark primary-color">
<!-- Navbar brand -->
<a class="navbar-brand" href="index.html">Admin Panel</a>
<!-- Collapse button -->
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#basicExampleNav"
aria-controls="basicExampleNav" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<!-- Collapsible content -->
<div class="collapse navbar-collapse" id="basicExampleNav">
<!-- Links -->
<ul class="navbar-nav mr-auto">
<li class="nav-item active">
<a class="nav-link" href="Dashboard.php">Home
<span class="sr-only">(current)</span>
</a>
</li>
<!-- Dropdown -->
<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle" id="navbarDropdownMenuLink" data-toggle="dropdown"
aria-haspopup="true" aria-expanded="false">Reports</a>
<div class="dropdown-menu dropdown-primary" aria-labelledby="navbarDropdownMenuLink">
<a class="dropdown-item" href="employeeonereport.php">Summary</a>
</div>
</li>
</ul>
<!-- Links -->
<form class="form-inline my-2 my-lg-0 align-self-stretch">
<input class="form-control mr-sm-2" type="search" placeholder="Search" aria-label="Search">
<button class="btn btn-outline-success my-2 my-sm-0" type="submit">Search</button>
</form>
</div>
<!-- Collapsible content -->
</nav>
<!--/.Navbar-->
<!-- Card -->
<div class="card mx-xl-5">
<!-- Card body -->
<div class="card-body">
<form method="POST" action="employeereport.php" name="expenditurereportform" >
<br><br>
<!-- Default input -->
<div class="form-group col-md-6" style="margin-left: 15px;">
<input type="text" class="form-control" id="inputemployeename" placeholder="Enter employee name" name="employeename" />
</div>
<!--input month-->
<!--Dropdown primary-->
<input type="submit" name="Addemployeereport" class="btn btn-primary btn-rounded" onclick="" value="Report"/>
</form>
<form class="text-center" style="color: #757575;" action="employeereport.php" name="addEmployee" method="POST">
<div class="form-row">
<div class="col">
<!-- First name -->
<div class="md-form">
<input type="text" value="<?php echo $_GET['firstname'];?>" id="FirstName" name="FirstName" class="form-control">
<label for="FirstName">First name</label>
</div>
</div>
<div class="col">
<!-- Last name -->
<div class="md-form">
<input type="text" id="LastName" value="<?php echo $_GET['lastname'];?>" name="LastName" class="form-control">
<label for="LastName">Last name</label>
</div>
</div>
</div>
<!-- Username -->
<div class="md-form">
<input type="text" id="UserName" value="<?php echo $_GET['username'];?>" name="UserName" class="form-control">
<label for="UserName">Username</label>
</div>
<!-- E-mail -->
<div class="md-form mt-0">
<input type="email" id="Email" value="<?php echo $_GET['email'];?>" name="Email" class="form-control">
<label for="Email">E-mail</label>
</div>
<!-- NIC Number -->
<div class="md-form mt-0">
<input type="text" id="NICNumber" value="<?php echo $_GET['username'];?>" name="NICNumber" class="form-control">
<label for="NICNumber">NIC Number</label>
</div>
<!-- Address -->
<div class="md-form mt-0">
<input type="text" id="Address" value="<?php echo $_GET['address'];?>" name="Address" class="form-control">
<label for="Address">Address</label>
</div>
<!-- Phone number -->
<div class="md-form">
<input type="text" id="PhoneNumber" value="<?php echo $_GET['phoneno'];?>" name="PhoneNumber" class="form-control" aria-describedby="materialRegisterFormPhoneHelpBlock">
<label for="PhoneNumber">Phone number</label>
<small id="materialRegisterFormPhoneHelpBlock" class="form-text text-muted mb-4">
Optional - for two step authentication
</small>
</div>
<input type="submit" name="Addpdf" class="btn btn-primary btn-rounded" style="margin-left:10px" onclick="" value="PDF"/>
</form>