diff --git a/app/database/migrations/2014_06_29_083517_create_password_reminders_table.php b/app/database/migrations/2014_06_29_083517_create_password_reminders_table.php
deleted file mode 100644
index dfbcf83fef..0000000000
--- a/app/database/migrations/2014_06_29_083517_create_password_reminders_table.php
+++ /dev/null
@@ -1,33 +0,0 @@
-string('email')->index();
- $table->string('token')->index();
- $table->timestamp('created_at');
- });
- }
-
- /**
- * Reverse the migrations.
- *
- * @return void
- */
- public function down()
- {
- Schema::drop('password_reminders');
- }
-
-}
diff --git a/app/views/layouts/default.blade.php b/app/views/layouts/default.blade.php
index 08c91c3350..6c86170f6b 100644
--- a/app/views/layouts/default.blade.php
+++ b/app/views/layouts/default.blade.php
@@ -19,6 +19,7 @@
+ @include('partials.menu')
@include('partials.flashes')
@yield('content')
diff --git a/app/views/partials/menu.blade.php b/app/views/partials/menu.blade.php
new file mode 100644
index 0000000000..8383a4b23d
--- /dev/null
+++ b/app/views/partials/menu.blade.php
@@ -0,0 +1,51 @@
+
\ No newline at end of file
diff --git a/app/views/profile/change-password.blade.php b/app/views/profile/change-password.blade.php
new file mode 100644
index 0000000000..ff4371a2f1
--- /dev/null
+++ b/app/views/profile/change-password.blade.php
@@ -0,0 +1,52 @@
+@extends('layouts.default')
+@section('content')
+
+
+
Change your password
+ Logged in as {{Auth::user()->email}}
+
+
+
+
+
+
+ Use this extremely obvious form to change your password.
+
+
+
+
+
+
+ {{Form::open(['class' => 'form-horizontal'])}}
+
+
+
+
+
+
+ {{Form::close()}}
+
+
+
+@stop
+@section('scripts')
+@stop
\ No newline at end of file
diff --git a/app/views/profile/index.blade.php b/app/views/profile/index.blade.php
new file mode 100644
index 0000000000..2a569df30c
--- /dev/null
+++ b/app/views/profile/index.blade.php
@@ -0,0 +1,17 @@
+@extends('layouts.default')
+@section('content')
+
+
+
Profile
+ Logged in as {{Auth::user()->email}}
+
+
+
+
+@stop
+@section('scripts')
+@stop
\ No newline at end of file