mirror of
https://github.com/ClaytonWWilson/CS307-Team24.git
synced 2025-12-15 18:08:46 +00:00
25 lines
698 B
JavaScript
25 lines
698 B
JavaScript
import React, { Component } from 'react';
|
|
import './App.css';
|
|
|
|
import logo from './twistter-logo.png';
|
|
import TextField from '@material-ui/core/TextField';
|
|
|
|
class Login extends Component {
|
|
render() {
|
|
return (
|
|
<div>
|
|
<img src={logo} className="app-logo" alt="logo" />
|
|
<br/><br/>
|
|
<b>Log in to Twistter</b>
|
|
<br/><br/>
|
|
<TextField className="authInput" id="email" name="email" label="Email" />
|
|
<br/><br/>
|
|
<TextField className="authInput" id="password" name="password" label="Password" />
|
|
<br/><br/>
|
|
<button className="authButtons register" type="submit">Sign in</button>
|
|
</div>
|
|
);
|
|
};
|
|
}
|
|
|
|
export default Login; |