cancel and success page

This commit is contained in:
rustdesk
2024-10-12 02:06:46 +08:00
parent 0b733ca594
commit 7caadbd911
3 changed files with 43 additions and 1 deletions

18
v3/src/pages/cancel.astro Normal file
View File

@@ -0,0 +1,18 @@
---
import Hero from '~/components/widgets/Hero.astro';
import Layout from '~/layouts/PageLayout.astro';
const metadata = {
title: 'Success',
};
---
<Layout metadata={metadata}>
<!-- Hero Widget ******************* -->
<Hero tagline="">
<Fragment slot="title"> You have cancelled the payment!
</Fragment>
</Hero>
</Layout>