-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathinvoice_stat.php
More file actions
38 lines (30 loc) · 980 Bytes
/
invoice_stat.php
File metadata and controls
38 lines (30 loc) · 980 Bytes
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
<?php
session_start();
if(isset($_SESSION['IS_AUTHENTICATED']) && $_SESSION['IS_AUTHENTICATED'] == 1){
}
else{
header('location:login_modified.php');
exit();
}
?>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!--<link rel="stylesheet" href="table.css">-->
<link rel="stylesheet" type="text/css" href="login_css.css">
</head>
<body style="background-color:#4fc3f7">
<center>
<h1 align="center" style="color:white">Invoice</h1> <br>
<div class="container">
<div class="form-container sign-up-container">
<form action = "get_invoice.php" method = "post">
<input type="text" name="transaction_id" maxlength="25" placeholder = "Transaction ID" id="login" aria-describedby="emailHelp"><br><br>
</div><br>
<button type="submit" name="submit" value="Get Invoice" style = "margin:180px -180px 100px 100px;">GET INVOICE</button>
</form>
</div></div>
</center>
</body>
</html>