diff --git a/projects/account/src/app/device/device-remove/device-remove.component.html b/projects/account/src/app/device/device-remove/device-remove.component.html
new file mode 100644
index 0000000..8bdcca8
--- /dev/null
+++ b/projects/account/src/app/device/device-remove/device-remove.component.html
@@ -0,0 +1,12 @@
+
Remove Device
+
+
+
+ Just double checking. Device removal cannot be undone.
+
+
+
+
+
+
+
diff --git a/projects/account/src/app/device/device-remove/device-remove.component.scss b/projects/account/src/app/device/device-remove/device-remove.component.scss
new file mode 100644
index 0000000..a2b052e
--- /dev/null
+++ b/projects/account/src/app/device/device-remove/device-remove.component.scss
@@ -0,0 +1,5 @@
+.mat-body{
+ margin-bottom: 16px;
+ width: 250px;
+}
+
diff --git a/projects/account/src/app/device/device-remove/device-remove.component.ts b/projects/account/src/app/device/device-remove/device-remove.component.ts
new file mode 100644
index 0000000..5e11372
--- /dev/null
+++ b/projects/account/src/app/device/device-remove/device-remove.component.ts
@@ -0,0 +1,22 @@
+import {Component, Inject, OnInit} from '@angular/core';
+import { MatDialogRef, MAT_DIALOG_DATA } from '@angular/material';
+
+@Component({
+ selector: 'account-device-remove',
+ templateUrl: './device-remove.component.html',
+ styleUrls: ['./device-remove.component.scss']
+})
+export class DeviceRemoveComponent implements OnInit {
+
+ constructor(
+ public dialogRef: MatDialogRef,
+ @Inject(MAT_DIALOG_DATA) public data: boolean) {
+ }
+
+ ngOnInit() {
+ }
+
+ onCancelClick(): void {
+ this.dialogRef.close();
+ }
+}
diff --git a/projects/account/src/app/device/device.component.html b/projects/account/src/app/device/device.component.html
index 7f22db6..283d80c 100644
--- a/projects/account/src/app/device/device.component.html
+++ b/projects/account/src/app/device/device.component.html
@@ -94,7 +94,7 @@
Enclosure Version:
1.2.3
-