-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfirm.php
More file actions
73 lines (70 loc) · 3.46 KB
/
confirm.php
File metadata and controls
73 lines (70 loc) · 3.46 KB
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
68
69
70
71
72
73
<link rel="stylesheet" href="//cdnjs.cloudflare.com/ajax/libs/bootstrap-datepicker/1.3.0/css/datepicker.min.css" />
<link rel="stylesheet" href="//cdnjs.cloudflare.com/ajax/libs/bootstrap-datepicker/1.3.0/css/datepicker3.min.css" />
<script src="//cdnjs.cloudflare.com/ajax/libs/bootstrap-datepicker/1.3.0/js/bootstrap-datepicker.min.js"></script>
<style type="text/css">
/**
* Override feedback icon position
* See http://formvalidation.io/examples/adjusting-feedback-icon-position/
*/
#eventForm .form-control-feedback {
top: 0;
right: -15px;
}
</style>
<br>
<div class="container text-left">
<h2>Payment Confirmation</h2>
<h4>Bank Transfer payment only, please confirm your payment by filling out the online form.
Maximum 1 day confirmation process.</h4>
<i><sub>Fill in the correct data and in accordance with your account number, record number or reference contained on the receipt receipt. Please confirm one times payment only.
If you do not receive a successful SMS / Email within 1x24 hours after filling out the form, please contact our CS.</sub></i><br><br>
<br>
<form class="form-horizontal" id="eventForm" role="form" name="confirm" method="post" action="config/confirm-payment.php">
<div class="form-group" align="left">
<label class="control-label col-sm-2" for="nama">Order Number :</label>
<div class="col-sm-10">
<input type="text" class="form-control" name="ordernumber" placeholder=" Fill your order number" required>
</div>
</div>
<div class="form-group">
<label name="bank" class="col-sm-2 control-label">Destination of Bank</label>
<div class="col-sm-10">
<input class="form-control" id="disabledInput" type="text" name="bank" placeholder=" BNI 7144-555-38383888 a/n Watchout" disabled>
</div>
</div>
<div class="form-group">
<label class="control-label col-sm-2" for="email">Name of Sender:</label>
<div class="col-sm-10">
<input type="text" class="form-control" name="name" placeholder=" Fill the name of sender">
</div>
</div>
<div class="form-group">
<label class="control-label col-sm-2" for="date">Date of Transfer:</label>
<div class="col-sm-10 date">
<div class="input-group input-append date" id="datePicker">
<input type="text" class="form-control" name="date" placeholder=" Fill your date of transfer">
<span class="input-group-addon add-on"><span class="glyphicon glyphicon-calendar"></span></span>
</div>
</div>
</div>
<div class="form-group">
<label class="control-label col-sm-2" for="email">Amount:</label>
<div class="col-sm-10">
<input type="text" class="form-control" name="amount" placeholder=" Fill amount">
</div>
</div>
<div class="form-group">
<label class="control-label col-sm-2" for="method" name="method">Method of Transfer :</label>
<div class="col-sm-10">
<select class="form-control" id="sel1" name="method">
<option>Internet Banking</option>
<option>Mobile Banking</option>
<option>ATM</option>
<option>Cash Deposit</option>
</select>
<br>
<button type="submit" value="Kirim" name="tombol" class="btn btn-primary btn-block"><span class="glyphicon glyphicon-ok"></span> Send</button>
</div>
</div>
</div></form>
</div>