Skip to content

Instantly share code, notes, and snippets.

@rijdz
Last active November 29, 2018 03:52
Show Gist options
  • Save rijdz/632275efe9865827cae91190779ac79a to your computer and use it in GitHub Desktop.
Save rijdz/632275efe9865827cae91190779ac79a to your computer and use it in GitHub Desktop.
React - Login on Center of Page
const centerLogin = {
'position': 'fixed',
'top': '50%',
'left': '50%',
'margin-top': '-100px',
'margin-left': '-200px'
};
return (
<section className="container">
<Helmet>
<title>Sign in</title>
</Helmet>
<div className="container" style={centerLogin}>
{/* <h1 className="page-header">Sign in</h1> */}
<div className="row">
<div className="col-sm-4">
<div className="panel panel-default">
{/* <div className="panel-heading">Login</div> */}
<div className="panel-body">
<form onSubmit={this.handleSubmit.bind(this)}>
{alerts}
{formElements}
</form>
<h5>*Please use SDM Online Credentials</h5>
</div>
</div>
</div>
</div>
</div>
</section>
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment