forked from varas7/inventory
-
Notifications
You must be signed in to change notification settings - Fork 0
/
add_employee.php
67 lines (64 loc) · 3.04 KB
/
add_employee.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
<html>
<head>
<meta charset="utf-8">
<title>Add Employee</title>
<link rel="stylesheet" href="css/bootstrap/css/bootstrap.min.css" media="screen" title="no title">
<link rel="stylesheet" href="style.css" media="screen" title="no title">
<script src="js/jquery-3.1.0.min.js"></script>
<script src="css/bootstrap/js/bootstrap.min.js"></script>
</head>
<body>
<div class="container">
<div class="container" id="logo">
<a class='logo' href="index.php">Inventory Management System</a>
<h1>Add Employee</h1>
</div>
<div class="box-section">
<br><br>
<form class="form-horizontal" role="form" id="add_emp" method="POST" action="add_person_details.php">
<div class="container">
<div class="form-group row">
<label for="example-text-input" class="col-xs-4 col-form-label text-right">Full Name :</label>
<div class="col-xs-4">
<input class="form-control" type="text" placeholder="Enter Full Name" name="full_name" id="fullname">
</div>
</div>
<div class="form-group row">
<label for="example-text-input" class="col-xs-4 col-form-label text-right">Username :</label>
<div class="col-xs-4">
<input class="form-control" type="text" placeholder="Enter Userame" name="username" id="user_name">
</div>
</div>
<div class="form-group row">
<label for="example-text-input" class="col-xs-4 col-form-label text-right">Password :</label>
<div class="col-xs-4">
<input class="form-control" type="password" placeholder="Enter Password" name="password" id="password">
</div>
</div>
<div class="form-group row">
<label for="example-text-input" class="col-xs-4 col-form-label text-right">Password :</label>
<div class="col-xs-4">
<input class="form-control" type="password" placeholder="Re-enter Password" name="repassword" id="repass">
</div>
</div>
<div class="form-group row">
<label for="example-text-input" class="col-xs-4 col-form-label text-right">Contact Number :</label>
<div class="col-xs-4">
<input class="form-control" type="text" placeholder="Enter Contact Number" name="contact_no" id="contacno">
</div>
</div>
<div class="form-group row">
<label for="example-text-input" class="col-xs-4 col-form-label text-right">Address :</label>
<div class="col-xs-4">
<input class="form-control" type="text" placeholder="Enter Address" name="address" id="address">
</div>
</div>
<a href="#"><button type="submit" name="submit" id="submitpro" class="btn btn-primary"><span class="glyphicon glyphicon-check"></span> Submit</button></a> 
<a href="#"><button type="reset" class="btn btn-danger"><span class="glyphicon glyphicon-remove-sign"></span> Reset</button></a> 
<a href="owner_dashboard.php"><button type="button" class="btn btn-success"><span class="glyphicon glyphicon-arrow-left"></span> Cancel</button></a> 
</div>
</form>
</div>
</div>
</body>
</html>