diff --git a/app/components/identity/reload.hbs b/app/components/identity/reload.hbs
new file mode 100644
index 00000000..373bbab0
--- /dev/null
+++ b/app/components/identity/reload.hbs
@@ -0,0 +1,6 @@
+
Status Pending
+Reload to complete and
+ verify the link between Profile Service and RealDevSquad Service.
+
\ No newline at end of file
diff --git a/app/components/identity/reload.js b/app/components/identity/reload.js
new file mode 100644
index 00000000..e94bba78
--- /dev/null
+++ b/app/components/identity/reload.js
@@ -0,0 +1,9 @@
+import Component from '@glimmer/component';
+import { action } from '@ember/object';
+
+export default class ReloadComponent extends Component {
+ @action async handleReload(e) {
+ e.preventDefault();
+ window.location.reload();
+ }
+}
diff --git a/app/templates/identity.hbs b/app/templates/identity.hbs
index 99893e82..a9511781 100644
--- a/app/templates/identity.hbs
+++ b/app/templates/identity.hbs
@@ -23,6 +23,8 @@
/>
{{else if (eq this.state 'step3')}}
+ {{else if (eq this.state 'reload')}}
+
{{/if}}