mirror of
https://framagit.org/framasoft/framadate/funky-framadate-front.git
synced 2023-08-25 13:53:14 +02:00
053d24c158
Base de fonctionnement sans javascript
29 lines
764 B
HTML
29 lines
764 B
HTML
<!DOCTYPE html>
|
|
<html lang="fr">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="referrer" content="same-origin">
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
|
|
<title>Framadate</title>
|
|
|
|
<meta name="description" content=" ">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
|
|
<link crossorigin="anonymous" rel="stylesheet" href="https://rawgit.com/twbs/bootstrap/v4-dev/dist/css/bootstrap-reboot.css">
|
|
<link rel="stylesheet" href="style.css">
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<form>
|
|
<label>Nom :
|
|
<input type="text" name="name" placeholder="Bob"/>
|
|
</label>
|
|
<button type="submit">Valider</button>
|
|
<p class="example">Par exemple : Stéphane ou Caroline</p>
|
|
</form>
|
|
|
|
</body>
|
|
</html>
|