-
Notifications
You must be signed in to change notification settings - Fork 0
/
status_add.php
29 lines (19 loc) · 1.08 KB
/
status_add.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
<?php include 'connection.php';
include 'topnav.php'; ?>
<div class="contanier">
<div class="card card-register mx-auto mt-5">
<div class="card-header""><h2 style="text-shadow: 0px 1px 5px white;">Add new Record</h2> </div>
<div class="card-body" style="background-color: #009999;">
<form role="form" method="post" action="status_trans.php?action=add">
<div class="card-body">
<div class="form-group">
<input class="form-control" placeholder="Status Name" name="status_name">
</div>
<button type="submit" class="btn btn-default"> <h6> Save Record </h6> </button>
<button type="reset" class="btn btn-default"> <h6> Clear </h6> </button>
</form>
</div>
</div>
</div>
<!-- /.container-fluid -->
<?php include 'footer.php'; ?>