-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpaymentScreenshot.php
61 lines (50 loc) · 1.94 KB
/
paymentScreenshot.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Payment Verification - ICIT - 24 | Erode Sengunthar Engineering College</title>
<?php include "./includes.php"; ?>
<style>
footer {
position: relative;
}
</style>
</head>
<body>
<?php
include "./nav.php";
include "./error.php";
?>
<section class="form">
<form action="./payment.php" method="POST" enctype="multipart/form-data">
<h2>Payment Verification</h2>
<ul class="alert alert-danger w-100 px-5">
<li>Kindly Enter Your Team ID which is sent to your mail ID.</li>
</ul>
<div class="input-group">
<label for="userid">Team ID:</label>
<input type="text" name="teamID" id="teamID" placeholder="Enter Team ID" required>
</div>
<div class="input-group">
<label for="payment-date">Payment Date:</label>
<input type="date" name="payment-date" id="payment-date" placeholder="Enter Payment Date" required>
</div>
<div class="input-group">
<label for="transaction-id">Transaction ID:</label>
<input type="text" name="transaction-id" id="transaction-id" placeholder="Enter Transaction ID"
required>
</div>
<div class="input-group">
<label for="payment-screenshot">Payment Screenshot:</label>
<input type="file" name="payment-screenshot" id="payment-screenshot"
placeholder="Upload Payment Screenshot" accept="image/*" required>
</div>
<div class="btn-group">
<button type="submit" name="payment">Submit</button>
</div>
</form>
</section>
<?php include "./footer.php"; ?>
</body>
</html>