mirror of
https://github.com/ClaytonWWilson/CS307-Team24.git
synced 2025-12-16 10:18:48 +00:00
logout ui
This commit is contained in:
parent
13b57eedc6
commit
8eb0872d16
22
twistter-frontend/src/Logout.js
Normal file
22
twistter-frontend/src/Logout.js
Normal file
@ -0,0 +1,22 @@
|
|||||||
|
/* eslint-disable */
|
||||||
|
import React, { Component} from 'react';
|
||||||
|
import './App.css';
|
||||||
|
import logo from './images/twistter-logo.png';
|
||||||
|
import TextField from '@material-ui/core/TextField';
|
||||||
|
|
||||||
|
class Logout extends Component {
|
||||||
|
render() {
|
||||||
|
return(
|
||||||
|
<div>
|
||||||
|
<img src={logo} className="app-logo" alt="logo" />
|
||||||
|
<br/><br/>
|
||||||
|
<b>Logout of your Twistter Account</b>
|
||||||
|
<br/><br/>
|
||||||
|
<br/><br/>
|
||||||
|
<button className="authButtons register" type="submit">Sign Out</button>
|
||||||
|
</div>
|
||||||
|
);
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
export default Logout;
|
||||||
Loading…
Reference in New Issue
Block a user