forked from CRM_Production/JTT_CrM
parent
343eacc281
commit
9d7f7f8d33
@ -0,0 +1,20 @@
|
|||||||
|
import React from 'react';
|
||||||
|
|
||||||
|
const Connexion = () => {
|
||||||
|
return (
|
||||||
|
<div>
|
||||||
|
{/* Create a connexion page */}
|
||||||
|
<h1>Connexion</h1>
|
||||||
|
|
||||||
|
{/* Create a form */}
|
||||||
|
<form className="connexionBox" onSubmit={e => e.preventDefault()}>
|
||||||
|
<input type="text" placeholder="Pseudo" required />
|
||||||
|
<button type="submit">GO</button>
|
||||||
|
|
||||||
|
</form>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
);
|
||||||
|
};
|
||||||
|
|
||||||
|
export default Connexion;
|
Loading…
Reference in new issue