This repository has been archived on 2020-08-21. You can view files and clone it, but cannot push or open issues or pull requests.
nemubot-askweb/index.html
2012-05-18 22:50:06 +02:00

33 lines
771 B
HTML

<!DOCTYPE html>
<html>
<head>
<meta charset="utf8" />
<link rel="Stylesheet" href="style.css" />
<title>Every Questions</title>
</head>
<body>
<header>
<div id="main_title">
<h1>Nemubot Questions</h1>
</div>
</header>
<form id="formulaire" method="post" action="questions.php">
<p>
<label for="question">Quelle est votre question ? </label>
<textarea id="question" name="question"
rows="10" cols="50"></textarea>
</p>
<p>
<label for="answer">Quelle est la réponse ? </label>
<input id="answer" name="answer" type="text" />
</p>
<p>
<input type="submit" name="send" value="Envoyer" />
</p>
</form>
</body>
</html>