forked from karsrhyder/FairDrive
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
f59ca3c
commit 2b07720
Showing
15 changed files
with
379 additions
and
28 deletions.
There are no files selected for viewing
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,53 @@ | ||
import React from "react"; | ||
import styles from "../styles.module.css"; | ||
import { NavLink } from "react-router-dom"; | ||
import { connect } from "react-redux"; | ||
|
||
class Account extends React.Component { | ||
render() { | ||
return ( | ||
<div className={styles.container}> | ||
<div className={styles.topbar}> | ||
<div className={styles.breadcrumb}>FairDrive / </div> | ||
{/* <div className={styles.breadcrumbpath}> | ||
by Fair Data Society | ||
</div> */} | ||
|
||
</div> | ||
<div className={styles.innercontainer}> | ||
<div className={styles.register}> | ||
<div className={styles.breadcrumbpath}>Unlock</div> | ||
<input type="text" placeholder="Email"></input> | ||
<input type="password" placeholder="Password"></input> | ||
<div className={styles.button}>Unlock</div> | ||
</div> | ||
<div className={styles.register}> | ||
<div className={styles.breadcrumbpath}>Register</div> | ||
<input type="text" placeholder="Email"></input> | ||
<input type="password" placeholder="Password"></input> | ||
<input type="password" placeholder="Password again"></input> | ||
<div className={styles.button}>Register</div> | ||
</div> | ||
</div> | ||
</div> | ||
) | ||
} | ||
}; | ||
|
||
const mapStateToProps = (_, ownProps) => { | ||
const { directory } = (ownProps.match || {}).params || {}; | ||
// return createStructuredSelector({ | ||
// directory: () => directory, | ||
// directories: state => getDirectories(state, directory), | ||
// }); | ||
}; | ||
|
||
const mapDispatchToProps = dispatch => ({ | ||
//addHashtag: name => dispatch({ type: "ADD_HASHTAG", hashtag: { name } }) | ||
}); | ||
|
||
export default connect( | ||
mapStateToProps, | ||
mapDispatchToProps | ||
)(Account); | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.