-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit 07a28d0
Showing
288 changed files
with
69,726 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,96 @@ | ||
<?php include 'propertymenus.php';?> | ||
<!DOCTYPE html> | ||
|
||
<html lang="en"> | ||
|
||
<head> | ||
|
||
<meta charset="utf-8"> | ||
|
||
<title>Bank Details</title> | ||
|
||
<link rel="stylesheet" type="text/css" href="bank.css"> | ||
|
||
<script type="text/javascript"> | ||
|
||
function validate(){ | ||
|
||
// alert("Form is validated"); | ||
|
||
var phon_no=document.getElementById("code").value; | ||
|
||
var pattern=/^[0-9]{10}$/; | ||
|
||
if(pattern.test(phon_no)) | ||
|
||
{ | ||
|
||
alert("valid mobile number"); | ||
|
||
} | ||
|
||
else | ||
|
||
{ | ||
|
||
alert("invalid mobile number"); | ||
|
||
} | ||
|
||
} | ||
|
||
|
||
|
||
</script> | ||
|
||
</head> | ||
|
||
<body> | ||
|
||
|
||
|
||
<div> | ||
<br> | ||
<br> | ||
|
||
<table align="center" width="750px" cellpadding="5" class="table-striped" cellspacing="10" style="opacity: 0.8;"> | ||
<tr style="background:#ff6f61;font-size: 20px;"> | ||
<td colspan="2" align="center" style="padding-top:.9em;padding-bottom:.9em;"><b>Bank Details</b></td> | ||
</tr> | ||
<tr><td align="center">Bank name</td> | ||
<td><input type="text" name="bankName"></td> | ||
</tr> | ||
<tr> | ||
<td align="center">Beneficiary Name</td> | ||
<td><input type="text" name="beneficiaryName"></td> | ||
|
||
</tr> | ||
|
||
<tr> | ||
<td align="center">Account Type</td> | ||
<td><input type="text" name="accounttype"></td> | ||
</tr> | ||
<tr> | ||
<td align="center">IFSC Code</td> | ||
<td><input type="text" name="ifsc"></td> | ||
</tr> | ||
<tr> | ||
<td align="center">Swift Code</td> | ||
<td><input type="text" name="swiftcode"/></td> | ||
</tr> | ||
<tr> | ||
<td align="center">Branch</td> | ||
<td><input type="text" name="branch"></td> | ||
</tr> | ||
<tr> | ||
<td colspan="2" align="center" style="padding-top:1.9em;padding-bottom:1.9em;"><input type="Submit" name="save" value="save" class="btn btn-success" style="border-radius: 2em;width:115px;" /></td> | ||
</tr> | ||
<table> | ||
</div> | ||
</body> | ||
</html> | ||
|
||
|
||
|
||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
<?php include 'propertymenus.php';?> | ||
<div> | ||
<br> | ||
<br> | ||
|
||
<table align="center" width="750px" cellpadding="5" class="table-striped" cellspacing="10" style="opacity: 0.8;"> | ||
<tr style="background:#ff6f61;font-size: 20px;"> | ||
<td colspan="2" align="center" style="padding-top:.9em;padding-bottom:.9em;"><b>Documents</b></td> | ||
</tr> | ||
<tr><td align="center">Incorporation Certificats/Trade </td> | ||
<td style="padding-top:.9em;padding-bottom:.9em;"><input type="File" name=""></td> | ||
</tr> | ||
<tr> | ||
<td align="center">Tax/GST Certificate</td> | ||
<td style="padding-top:.9em;padding-bottom:.9em;"><input type="file" name=""></td> | ||
|
||
</tr> | ||
|
||
<tr> | ||
<td align="center">Pan/Tax Identification No</td> | ||
<td style="padding-top:.9em;padding-bottom:.9em;"><input type="file" name=""></td> | ||
</tr> | ||
<tr> | ||
<td align="center">Cancel Cheque</td> | ||
<td style="padding-top:.9em;padding-bottom:.9em;"><input type="file" name=""></td> | ||
</tr> | ||
|
||
<table> | ||
</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
<?php | ||
session_start(); | ||
include"connect.php"; | ||
if(empty($_SESSION['user'])){ | ||
header('location:index.php'); | ||
} | ||
if($_SESSION['user']['role']=='user'){ | ||
header('location:user.php'); | ||
} | ||
if($_SESSION['user']['role']=='manager'){ | ||
header('location:moderator.php'); | ||
} | ||
?> | ||
<h1>Hi, <?php echo $_SESSION['user']['fname'];?> Page</h1> | ||
|
||
|
||
<link rel="stylesheet" href="style.css" type="text/css"/> | ||
<div id="profile"> | ||
<h2>User name is: <?php echo $_SESSION['user']['fname'];?> and Your Role is :<?php echo $_SESSION['user']['role'];?></h2> | ||
<div id="logout"><a href="logout.php">Please Click To Logout</a></div> | ||
</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,121 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="UTF-8"> | ||
<title>Mytravaly</title> | ||
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.6.3/css/all.css"> | ||
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.2.1/css/bootstrap.min.css"> | ||
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script> | ||
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.6/umd/popper.min.js"></script> | ||
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.2.1/js/bootstrap.min.js"></script> | ||
<link rel="stylesheet" href="main.css"> | ||
|
||
<link href="https://fonts.googleapis.com/css?family=Roboto" rel="stylesheet"> | ||
|
||
<script src="https://unpkg.com/[email protected]/js/gijgo.min.js" type="text/javascript"></script> | ||
<link href="https://unpkg.com/[email protected]/css/gijgo.min.css" rel="stylesheet" type="text/css" /> | ||
|
||
|
||
</head> | ||
|
||
<body> | ||
<!--Header part--> | ||
<?php | ||
include"user_header1.php"; | ||
?> | ||
<div class="row"> | ||
<?php | ||
include"sidebar.php"; | ||
?> | ||
<div class="container"> | ||
<a href="create_hol.php" class="btn btn-warning" style="margin: 20px;"><i class="fas fa-plus"></i> Create New Holiday</a> | ||
<div class="row"> | ||
<div class="card col-md-3" style="margin: 0 0 30px 30px;"> | ||
<div class="card-header"><h5><i class="far fa-calendar-alt"></i> 01/23/2019</h5></div> | ||
<div class="card-body"> | ||
01/23/2019 | ||
</div> | ||
</div> | ||
<div class="card col-md-3" style="margin: 0 0 30px 30px;"> | ||
<div class="card-header"><h5><i class="far fa-calendar-alt"></i> 01/23/2019</h5></div> | ||
<div class="card-body"> | ||
01/23/2019 | ||
</div> | ||
</div> | ||
<div class="card col-md-3" style="margin: 0 0 30px 30px;"> | ||
<div class="card-header"><h5><i class="far fa-calendar-alt"></i> 01/23/2019</h5></div> | ||
<div class="card-body"> | ||
01/23/2019 | ||
</div> | ||
</div> | ||
</div> | ||
<div class="row"> | ||
<div class="card col-md-3" style="margin: 0 0 30px 30px;"> | ||
<div class="card-header"><h5><i class="far fa-calendar-alt"></i> 01/23/2019</h5></div> | ||
<div class="card-body"> | ||
01/23/2019 | ||
</div> | ||
</div> | ||
<div class="card col-md-3" style="margin: 0 0 30px 30px;"> | ||
<div class="card-header"><h3><h5><i class="far fa-calendar-alt"></i> 01/23/2019</h5></div> | ||
<div class="card-body"> | ||
01/23/2019 | ||
</div> | ||
</div> | ||
<div class="card col-md-3" style="margin: 0 0 30px 30px;"> | ||
<div class="card-header"><h5><i class="far fa-calendar-alt"></i> 01/23/2019</h5></div> | ||
<div class="card-body"> | ||
01/23/2019 | ||
</div> | ||
</div> | ||
</div> | ||
<div class="row"> | ||
<div class="card col-md-3" style="margin: 0 0 30px 30px;"> | ||
<div class="card-header"><h5><i class="far fa-calendar-alt"></i> 01/23/2019</h5></div> | ||
<div class="card-body"> | ||
01/23/2019 | ||
</div> | ||
</div> | ||
<div class="card col-md-3" style="margin: 0 0 30px 30px;"> | ||
<div class="card-header"><h5><i class="far fa-calendar-alt"></i> 01/23/2019</h5></div> | ||
<div class="card-body"> | ||
01/23/2019 | ||
</div> | ||
</div> | ||
<div class="card col-md-3" style="margin: 0 0 30px 30px;"> | ||
<div class="card-header"><h5><i class="far fa-calendar-alt"></i> 01/23/2019</h5></div> | ||
<div class="card-body"> | ||
01/23/2019 | ||
</div> | ||
</div> | ||
</div> | ||
<div class="row"> | ||
<div class="card col-md-3" style="margin: 0 0 30px 30px;"> | ||
<div class="card-header"><h5><i class="far fa-calendar-alt"></i> 01/23/2019</h5></div> | ||
<div class="card-body"> | ||
01/23/2019 | ||
</div> | ||
</div> | ||
<div class="card col-md-3" style="margin: 0 0 30px 30px;"> | ||
<div class="card-header"><h5><i class="far fa-calendar-alt"></i> 01/23/2019</h5></div> | ||
<div class="card-body"> | ||
01/23/2019 | ||
</div> | ||
</div> | ||
<div class="card col-md-3" style="margin: 0 0 30px 30px;"> | ||
<div class="card-header"><h5><i class="far fa-calendar-alt"></i> 01/23/2019</h5></div> | ||
<div class="card-body"> | ||
01/23/2019 | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
|
||
|
||
<!--Footer part--> | ||
<?php | ||
//include"footer.php"; | ||
?> | ||
</body> | ||
</html> |
Oops, something went wrong.