51 lines
1.6 KiB
PHP
51 lines
1.6 KiB
PHP
<html>
|
|
|
|
<head>
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
|
|
<link rel="stylesheet" type="text/css" href="{{ url('assets/payment.css') }}">
|
|
|
|
<link href="https://fonts.googleapis.com/css?family=Roboto:300,400,500,700" rel="stylesheet">
|
|
|
|
|
|
</head>
|
|
|
|
<body>
|
|
<form action="/payment" method="GET">
|
|
<h1>Lakukan Pembayaran</h1>
|
|
<div class="icon">
|
|
<i class="fas fa-user-circle"></i>
|
|
</div>
|
|
<div class="formcontainer">
|
|
<div class="container">
|
|
<label for="email"><strong>Email</strong></label>
|
|
<input type="text" placeholder="Enter Email" name="email" required>
|
|
|
|
<label for="nominal"><strong>Nominal</strong></label>
|
|
<input type="text" placeholder="Enter Nominal" name="nominal" required>
|
|
|
|
<label for="tujuan"><strong>Tujuan</strong></label>
|
|
<input type="text" placeholder="Enter Tujuan" name="tujuan" required>
|
|
|
|
<label for="desk"><strong>Deskripsi</strong></label>
|
|
<input type="text" placeholder="Enter Deskripsi" name="desk" required>
|
|
</div>
|
|
|
|
<button type="submit"><strong>Bayar</strong></button>
|
|
<div class="container" style="background-color: #eee"></div>
|
|
|
|
</form>
|
|
@if (session('alert-succes'))
|
|
<script>
|
|
alert("{{ session('alert-succes') }}")
|
|
</script>
|
|
@elseif(session('alert-failed'))
|
|
<script>
|
|
alert("{{ session('alert-failed') }}")
|
|
</script>
|
|
@endif
|
|
|
|
</body>
|
|
|
|
</html>
|