summaryrefslogtreecommitdiff
path: root/src/pages/Profile.js
diff options
context:
space:
mode:
Diffstat (limited to 'src/pages/Profile.js')
-rw-r--r--src/pages/Profile.js6
1 files changed, 1 insertions, 5 deletions
diff --git a/src/pages/Profile.js b/src/pages/Profile.js
index 3c3b0899..d4594c9e 100644
--- a/src/pages/Profile.js
+++ b/src/pages/Profile.js
@@ -2,15 +2,12 @@ import React from 'react';
import {connect} from "react-redux";
import {openDeleteProfileModal} from "../actions/profile";
import Navbar from "../components/navigation/Navbar";
-import Login from "../containers/auth/Login";
import DeleteProfileModal from "../containers/profile/DeleteProfileModal";
-import "./Profile.css";
const ProfileContainer = ({onDelete}) => (
<div className="full-height">
<Navbar/>
- <div className="container profile-page-container full-height">
- <h2>Profile Settings</h2>
+ <div className="container text-page-container full-height">
<button className="btn btn-danger" onClick={onDelete}>Delete my account on OpenDC</button>
<p>
This does not delete your Google account, it simply disconnects it from the OpenDC app and deletes any
@@ -19,7 +16,6 @@ const ProfileContainer = ({onDelete}) => (
</p>
</div>
<DeleteProfileModal/>
- <Login visible={false}/>
</div>
);