source: src/main/resources/templates/payment-confirmed.html@ f7c05a1

Last change on this file since f7c05a1 was f7c05a1, checked in by Elena Shulevska <elena.shulevska@…>, 15 months ago

initial commit of the source code on origin

  • Property mode set to 100644
File size: 618 bytes
Line 
1<!DOCTYPE html>
2<html>
3<head>
4 <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css">
5 <link rel="stylesheet" href="styles.css">
6 <title>Payment Confirmation</title>
7</head>
8<body>
9<div class="container">
10 <div class="row">
11 <div class="col-lg-12 text-center">
12 <h1 class="mt-5">Payment Confirmation</h1>
13 <p class="lead">Your payment has been received and confirmed.</p>
14 <p>Thank you for your purchase!</p>
15 <a class="btn btn-secondary" href="/home">Home</a>
16 </div>
17 </div>
18</div>
19</body>
20</html>
Note: See TracBrowser for help on using the repository browser.