summaryrefslogtreecommitdiff
path: root/src/pages/Profile.js
diff options
context:
space:
mode:
authorGeorgios Andreadis <g.andreadis@student.tudelft.nl>2017-08-27 17:42:50 +0200
committerGeorgios Andreadis <g.andreadis@student.tudelft.nl>2017-09-23 10:05:45 +0200
commit2c42e9488771070d8efec5d91835cd8c7885f4b1 (patch)
tree63efba6438169ba4f74940cbdba72ad5d2396773 /src/pages/Profile.js
parentd22fa82e50d8ac540584659225c1c113d939251b (diff)
Restyle navbar and use across entire site
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>
);