diff --git a/src/app/app-routing.module.ts b/src/app/app-routing.module.ts
index 599e7ae..82eefbb 100644
--- a/src/app/app-routing.module.ts
+++ b/src/app/app-routing.module.ts
@@ -9,7 +9,6 @@ import {LogoutComponent} from './logout/logout.component';
 import {SignUpComponent} from './sign-up/sign-up.component';
 import {LogInComponent} from './log-in/log-in.component';
 import {ApproveComponent} from './approve/approve.component';
-import {LoadSeedComponent} from './load-seed/load-seed.component';
 
 export class RouteNames {
   public static TEST_SIGN = 'test-sign';
@@ -19,7 +18,6 @@ export class RouteNames {
   public static LOGOUT = 'logout';
   public static SIGN_UP = 'sign-up';
   public static LOG_IN = 'log-in';
-  public static LOAD_SEED = 'load-seed';
   public static APPROVE = 'approve';
 }
 
@@ -32,7 +30,6 @@ const routes: Routes = [
   { path: RouteNames.LOGOUT, component: LogoutComponent, pathMatch: 'full' },
   { path: RouteNames.SIGN_UP, component: SignUpComponent, pathMatch: 'full' },
   { path: RouteNames.LOG_IN, component: LogInComponent, pathMatch: 'full' },
-  { path: RouteNames.LOAD_SEED, component: LoadSeedComponent, pathMatch: 'full' },
   { path: RouteNames.APPROVE, component: ApproveComponent, pathMatch: 'full' },
 ];
 
diff --git a/src/app/app.module.ts b/src/app/app.module.ts
index 29947ee..1d4df32 100644
--- a/src/app/app.module.ts
+++ b/src/app/app.module.ts
@@ -18,7 +18,6 @@ import {EntropyService} from './entropy.service';
 import { LogInComponent } from './log-in/log-in.component';
 import {HttpClientModule} from '@angular/common/http';
 import { ApproveComponent } from './approve/approve.component';
-import { LoadSeedComponent } from './load-seed/load-seed.component';
 import { ErrorCallbackComponent } from './error-callback/error-callback.component';
 import { NgxIntlTelInputModule } from 'ngx-intl-tel-input';
 import { MatTooltipModule } from '@angular/material/tooltip';
@@ -36,7 +35,6 @@ import { TestLbryLogInComponent } from './test-lbry-log-in/test-lbry-log-in.comp
     SignUpComponent,
     LogInComponent,
     ApproveComponent,
-    LoadSeedComponent,
     ErrorCallbackComponent,
     TestSignComponent,
     TestSignTransactionComponent,
diff --git a/src/app/load-seed/load-seed.component.html b/src/app/load-seed/load-seed.component.html
deleted file mode 100644
index 4771510..0000000
--- a/src/app/load-seed/load-seed.component.html
+++ /dev/null
@@ -1,37 +0,0 @@
-<app-banner></app-banner>
-
-<div class="page-container" *ngIf="globalVars.inTab || globalVars.webview || globalVars.callback">
-  <div class="title-text">
-    Log in to {{ globalVars.hostname }}
-  </div>
-
-  <p class="main-text mb-20px">
-    Enter your DeSo seed phrase to load your account
-  </p>
-
-  <div *ngIf="loadSeedError" class="alert alert-danger mt-15px">
-    {{ loadSeedError }}
-  </div>
-
-  <div class="text-input-container">
-    <textarea [(ngModel)]="mnemonic"
-              class="text-input"
-              rows="4"
-              placeholder="Enter your DeSo seed phrase"></textarea>
-  </div>
-
-  <div class="main-text mb-20px">
-    If you have a passphrase, enter it below.
-  </div>
-  <div class="text-input-container">
-    <textarea [(ngModel)]="extraText"
-              class="text-input"
-              rows="4"
-              placeholder="Enter your passphrase"></textarea>
-  </div>
-
-  <button (click)="clickLoadAccount()"
-          class="button button-primary button-large">
-    Load Account
-  </button>
-</div>
diff --git a/src/app/load-seed/load-seed.component.scss b/src/app/load-seed/load-seed.component.scss
deleted file mode 100644
index e69de29..0000000
diff --git a/src/app/load-seed/load-seed.component.spec.ts b/src/app/load-seed/load-seed.component.spec.ts
deleted file mode 100644
index ee8370c..0000000
--- a/src/app/load-seed/load-seed.component.spec.ts
+++ /dev/null
@@ -1,25 +0,0 @@
-import { ComponentFixture, TestBed } from '@angular/core/testing';
-
-import { LoadSeedComponent } from './load-seed.component';
-
-describe('LoadSeedComponent', () => {
-  let component: LoadSeedComponent;
-  let fixture: ComponentFixture<LoadSeedComponent>;
-
-  beforeEach(async () => {
-    await TestBed.configureTestingModule({
-      declarations: [ LoadSeedComponent ]
-    })
-    .compileComponents();
-  });
-
-  beforeEach(() => {
-    fixture = TestBed.createComponent(LoadSeedComponent);
-    component = fixture.componentInstance;
-    fixture.detectChanges();
-  });
-
-  it('should create', () => {
-    expect(component).toBeTruthy();
-  });
-});
diff --git a/src/app/load-seed/load-seed.component.ts b/src/app/load-seed/load-seed.component.ts
deleted file mode 100644
index 404c909..0000000
--- a/src/app/load-seed/load-seed.component.ts
+++ /dev/null
@@ -1,53 +0,0 @@
-import { Component, OnInit } from '@angular/core';
-import {AccountService} from '../account.service';
-import {CryptoService} from '../crypto.service';
-import {EntropyService} from '../entropy.service';
-import {GlobalVarsService} from '../global-vars.service';
-import {Router} from '@angular/router';
-import {RouteNames} from '../app-routing.module';
-
-@Component({
-  selector: 'app-load-seed',
-  templateUrl: './load-seed.component.html',
-  styleUrls: ['./load-seed.component.scss']
-})
-export class LoadSeedComponent implements OnInit {
-  // Loading an account
-  loadSeedError = '';
-  mnemonic = '';
-  extraText = '';
-
-  constructor(
-    private accountService: AccountService,
-    private cryptoService: CryptoService,
-    private entropyService: EntropyService,
-    public globalVars: GlobalVarsService,
-    private router: Router,
-  ) {}
-
-  ngOnInit(): void {
-  }
-
-  clickLoadAccount(): void {
-    // Store mnemonic and extraText locally because we clear them below and otherwise
-    // they don't get saved in local storage reliably
-    const mnemonic = this.mnemonic;
-    const extraText = this.extraText;
-    const network = this.globalVars.network;
-
-    if (!this.entropyService.isValidMnemonic(mnemonic)) {
-      this.loadSeedError = 'Invalid mnemonic';
-      return;
-    }
-
-    const keychain = this.cryptoService.mnemonicToKeychain(mnemonic, extraText);
-
-    this.accountService.addUser(keychain, mnemonic, extraText, network);
-
-    // Clear the form
-    this.mnemonic = '';
-    this.extraText = '';
-
-    this.router.navigate(['/', RouteNames.LOG_IN], {queryParamsHandling: 'merge'});
-  }
-}