Skip to content

Instantly share code, notes, and snippets.

@nesbtesh
Last active November 19, 2016 19:10
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save nesbtesh/62a3acee9607eb45907a64d8ce206b72 to your computer and use it in GitHub Desktop.
Save nesbtesh/62a3acee9607eb45907a64d8ce206b72 to your computer and use it in GitHub Desktop.
Bad Login Example
import React from "react";
export default class LoginForm extends React.Component {
render(){
return(
<form>
<p>Login</p>
<div className="label-input">
<label>Email Address</label>
<input placeholder="usuario@dominio.com" />
</div>
<div className="label-input">
<label>Password</label>
<input placeholder="Password" />
</div>
<a>Forgot Password?</a>
<button>Login</button>
</form>
);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment