source: src/main/resources/templates/naplata.html@ b3f2adb

Last change on this file since b3f2adb was b3f2adb, checked in by Aleksandar Siljanoski <acewow3@…>, 14 months ago

Adding project to repo

  • Property mode set to 100644
File size: 1.6 KB
Line 
1<!DOCTYPE html>
2<html lang="en">
3<head>
4 <meta charset="UTF-8">
5 <title>Eaty's</title>
6 <link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0-alpha1/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-GLhlTQ8iRABdZLl6O3oVMWSktQOp6b7In1Zl3/Jr59b6EGGoI1aFkw7cmDA6j6gD" crossorigin="anonymous">
7
8
9 <style>
10
11 h1 {
12 color: white;
13 }
14
15 .color1-btn{
16 background-color: #1443ff !important;
17 color: #f1f1f1!important;
18
19 }
20
21 .custom-height{
22 padding-top: 25vh;
23 }
24
25 body {
26 background-color: rgb(24, 25, 26);
27 color: white;
28 min-height: 100vh;
29 display: flex;
30 flex-direction: column;
31 }
32
33 </style>
34</head>
35<body>
36<div class="custom-height">
37 <h3 th:if='${error}' th:text='${error}' style='color: red;'></h3>
38 <div th:unless='${error}'>
39 <h3 class="text-center" style='color: green;'>Плаќањето е успешно!</h3>
40 <!-- <div>Id.: <span th:text='${id}' /></div>-->
41 <!-- <div>Status: <span th:text='${status}' /></div>-->
42 <!-- <div>Charge id.: <span th:text='${chargeId}' /></div>-->
43 <!-- <div>Balance transaction id.: <span th:text='${balance_transaction}' /></div>-->
44 </div>
45
46 <div class="container text-dark text-center">
47 <h1 >Ви благодариме на довербата! </h1>
48 </div>
49 <div class="text-center py-5">
50 <a class="btn color1-btn" href='/restorani'>Почетна</a>
51 </div>
52</div>
53</body>
54</html>
Note: See TracBrowser for help on using the repository browser.