Skip to content

Instantly share code, notes, and snippets.

@ProspektsMarch22
Created September 30, 2022 21:32
Show Gist options
  • Save ProspektsMarch22/9bb43f6951521b2923a73e5d33524d14 to your computer and use it in GitHub Desktop.
Save ProspektsMarch22/9bb43f6951521b2923a73e5d33524d14 to your computer and use it in GitHub Desktop.
import React from 'react';
import ReactDOM from 'react-dom';
class Contact extends React.Component {
constructor(props) {
super(props);
this.state = {
password: 'swordfish',
authorized: false
};
this.authorize = this.authorize.bind(this);
}
authorize(e) {
const password = e.target.querySelector(
'input[type="password"]').value;
const auth = password == this.state.password;
this.setState({
authorized: auth
});
}
render() {
let login = (
<form
action="#"
onSubmit={this.authorize}>
<input type="password" placeholder="Password" />
<input type="submit" />
</form>
);
let contactInfo = (
<ul>
<li>
[email protected]
</li>
<li>
555.555.5555
</li>
</ul>
);
return (
<div id="authorization">
<h1>{this.state.authorized? 'Contact': 'Enter the Password'}</h1>
{this.state.authorized?contactInfo:login}
</div>
);
}
}
ReactDOM.render(
<Contact />,
document.getElementById('app')
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment