Files
LesRecettesDePapis/login.php

36 lines
1.1 KiB
PHP
Raw Normal View History

2026-03-20 16:00:45 +01:00
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Test Statique</title>
<link rel="stylesheet" href="main.css">
</head>
<body>
<?php include "header.php"?>
<div class="main-body">
2026-03-27 11:10:05 +01:00
<div class=formcont>
<form id='user-infos-01' action='".$action."' method='post'>
<div class='form-group'>
2026-03-27 12:02:17 +01:00
<label for='logmsg'>Se Connecter</label>
2026-03-27 16:00:23 +01:00
</div>
2026-03-27 11:10:05 +01:00
<div class='form-group '>
<input type='text' class='form-control' name='username' id='username' value='' placeholder="Pseudo">
</div>
<div class='form-group '>
<input type='text' class='form-control' name='password' id='password' value='' placeholder="Mot de Passe">
</div>
<button type='submit' class='btn btn-primary'>Confirmer</button>
</form>
</div>
2026-03-20 16:00:45 +01:00
</div>
<?php include "footer.php"?>
</body>
</html>