Skip to content

Commit

Permalink
feat: add success screen for device flow WD-10251
Browse files Browse the repository at this point in the history
Signed-off-by: David Edler <david.edler@canonical.com>
  • Loading branch information
edlerd committed Apr 15, 2024
1 parent 23c7feb commit e9b77db
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 1 deletion.
2 changes: 1 addition & 1 deletion ui/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

15 changes: 15 additions & 0 deletions ui/pages/device_complete.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
import type { NextPage } from "next";
import React from "react";
import PageLayout from "../components/PageLayout";

const DeviceComplete: NextPage = () => {
return (
<PageLayout title="Sign in successful">
<p>
Your device has been successfully connected. You can close this tab.
</p>
</PageLayout>
);
};

export default DeviceComplete;

0 comments on commit e9b77db

Please sign in to comment.