-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmicro.php
More file actions
72 lines (67 loc) · 2.55 KB
/
micro.php
File metadata and controls
72 lines (67 loc) · 2.55 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
<?php
session_start();
if (!isset($_SESSION['username'])){
header("Location:login.php");
}
include 'view2/header.php';
?>
<title>Micro</title>
</head>
<body>
<?php
include "view2/sidebar_user.php";
include 'view2/navbar_user.php';
?>
<!--<br/>
<div class="container">
<div class="jumbotron">
<h3 class="display-4 text-center">Selesaikan Pembayaran anda</h3>
<hr class="my-4">
<p>Total : Rp 200.000</p>
<form action="buying.php" method="post" enctype="multipart/form-data">
Foto Bukti Pembayaran:
<label class="btn-sm btn-primary">
Browse <input type="file" name="fileToUpload" id="fileToUpload" hidden required>
</label>
<input type="file" name="fileToUpload" id="fileToUpload" class="btn btn-primary">
<br>
<input type="submit" value="Upload Image" name="submit">
<button type="submit" name="submit" value="1" class="btn-sm btn-primary">Upload Image</button>
</form>
</div>
</div>-->
<div class="page-title">
<div class="row">
<div class="col-12 col-md-6 order-md-1 order-last">
<h3>Payment Page</h3>
</div>
</div>
</div>
<section class="section">
<div class="row">
<div class="col">
<div class="card">
<div class="card-body">
<div class="form-group mb-3">
<p class="form-label">Silakan Upload Bukti Pembayaran Anda</p>
<p class="form-label">Total : Rp 200.000</p>
<br/>
<div class="col-md-6 mb-1">
<form action="buying.php" method="post" enctype="multipart/form-data">
<div class="input-group mb-3">
<input type="file" name="fileToUpload" id="fileToUpload">
</div>
</div>
</fieldset>
<button type="submit" name="submit" value="1" class="btn btn-primary">Upload</button>
</form>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<?php
include ('view2/footer2.php');
?>