mirror of
https://github.com/Rushilwiz/reinvest.git
synced 2025-04-05 04:50:19 -04:00
27 lines
808 B
JavaScript
27 lines
808 B
JavaScript
import React from 'react';
|
|
|
|
const Login = (props) => {
|
|
return (
|
|
|
|
<form>
|
|
<div className="form-inner">
|
|
<h2>Login</h2>
|
|
<div className="form-group">
|
|
<label htmlFor="name">Name:</label>
|
|
<input type="text" name="name" id="name"/>
|
|
</div>
|
|
<div className="form-group">
|
|
<label htmlFor="email">Email: </label>
|
|
<input type="email" name="email" id="email"/>
|
|
</div>
|
|
<div className="form-group">
|
|
<label htmlFor="password">Password:</label>
|
|
<input type="password" name="password" id="password"/>
|
|
</div>
|
|
</div>
|
|
</form>
|
|
)
|
|
}
|
|
|
|
export default Login
|