Skip to content

Commit

Permalink
update sign in buttons to be Material UI buttons
Browse files Browse the repository at this point in the history
  • Loading branch information
andrew-wharton committed May 7, 2017
1 parent b2beffe commit c3085b4
Showing 1 changed file with 9 additions and 12 deletions.
21 changes: 9 additions & 12 deletions meteorproto/imports/ui/modals/SignIn.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ import React from 'react';
import { Meteor } from 'meteor/meteor'
import { createContainer } from 'meteor/react-meteor-data'
import TextField from 'material-ui/TextField';
import RaisedButton from 'material-ui/RaisedButton';
import { Link } from 'react-router';
import './SignIn.less';

Expand Down Expand Up @@ -50,18 +51,14 @@ export const SignIn = React.createClass({
}
<div className="actions">
<div className="buttons">
<span
role="button"
className="login-button"
onClick={this.logIn}>
Log In
</span>
<span
role="button"
className="cancel-button"
onClick={this.props.closeHandler}>
Cancel
</span>
<RaisedButton
label="Log In"
onClick={this.logIn}
style={{margin: '1em'}} />
<RaisedButton
label="Cancel"
onClick={this.props.closeHandler}
style={{margin: '1em'}} />
</div>
</div>
</div>
Expand Down

0 comments on commit c3085b4

Please sign in to comment.