56 lines
1.2 KiB
PHP
56 lines
1.2 KiB
PHP
<!doctype html>
|
|
<html lang="en" class="authentification page">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<title>CONNEXION</title>
|
|
<link
|
|
rel="stylesheet"
|
|
href="https://cdn.jsdelivr.net/npm/@picocss/pico@2/css/pico.min.css"
|
|
/>
|
|
|
|
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css">
|
|
<?=link_tag('assets/style.css')?>
|
|
</head>
|
|
<body>
|
|
<section class="connexion">
|
|
|
|
<div class="authentification">
|
|
|
|
<h3> Déjà abonné </h3>
|
|
<form action="reponse.php" method="GET">
|
|
<p>Adresse mail</p>
|
|
<input type="text" name="Email">
|
|
|
|
<p>Mot de passe</p>
|
|
<input type="text" name="PW">
|
|
|
|
<input type=submit value="Connexion">
|
|
</div>
|
|
|
|
<div class="new">
|
|
|
|
<h3> Création de compte </h3>
|
|
|
|
<form action="reponse.php" methode="GET">
|
|
|
|
<p>Nom</p>
|
|
<input type="text" name="Nom">
|
|
|
|
<p>Prénom</p>
|
|
<input type="text" name="Prenom">
|
|
|
|
<p>Adresse mail</p>
|
|
<input type="text" name="Email">
|
|
|
|
<p>Mot de passe</p>
|
|
<input type="text" name="PW">
|
|
|
|
<input type=submit value="Créer">
|
|
</div>
|
|
</form>
|
|
</main>
|
|
</body>
|
|
</html>
|
|
|
|
|