initial commit
This commit is contained in:
28
resources/views/emails/process-payment.blade.php
Normal file
28
resources/views/emails/process-payment.blade.php
Normal file
@@ -0,0 +1,28 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>Payment Successful</title>
|
||||
<link rel="stylesheet" href="styles.css">
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<div class="container">
|
||||
<div class="success-box">
|
||||
<div class="icon">
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="green" width="48px" height="48px">
|
||||
<path d="M0 0h24v24H0z" fill="none" />
|
||||
<path
|
||||
d="M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm-2 14.59L5.41 12 4 13.41l6 6 12-12L19.59 6l-9.59 9.59z" />
|
||||
</svg>
|
||||
</div>
|
||||
<h1>Payment Successful!</h1>
|
||||
<p>Thank you for your payment. Your transaction has been completed successfully.</p>
|
||||
{{-- <a href="#" class="button">Go to Dashboard</a> --}}
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
|
||||
</html>
|
Reference in New Issue
Block a user