summaryrefslogtreecommitdiff
path: root/page.html
diff options
context:
space:
mode:
authorjerome <jerome@xlinfo.fr>2025-09-03 17:16:38 +0200
committerjerome <jerome@xlinfo.fr>2025-09-03 17:16:38 +0200
commit523245a857990540dc65148c19aec5aa7f120f9c (patch)
tree3a82b346024780dcfeaf5893d14ec1c565b53f12 /page.html
parentcb1af4fa69b015b8ede43310151b51cc2720f88f (diff)
downloadhttp-523245a857990540dc65148c19aec5aa7f120f9c.tar.gz
http-523245a857990540dc65148c19aec5aa7f120f9c.zip
Dockerfile
Diffstat (limited to 'page.html')
-rw-r--r--page.html51
1 files changed, 0 insertions, 51 deletions
diff --git a/page.html b/page.html
deleted file mode 100644
index 83e6147..0000000
--- a/page.html
+++ /dev/null
@@ -1,51 +0,0 @@
-<!DOCTYPE html>
-<html lang="fr">
- <head>
- <meta charset="utf-8">
- <title>Exemple</title>
- <style>
- form {
- border: solid black 1px;
- padding: 1em;
- margin:1em;
- }
- #titre {
- color:blue;
- }
- .formulaire {
- color: #808080;
- }
- </style>
- </head>
- <body>
- <h1 id="titre">Système d'exploitation</h1>
- <div>
- <strong>Questionnaire</strong>
- <form action="page.php">
- <p class="formulaire">
- Votre nom :<input type="text" name="username">
- </p>
- <!-- Mot de passe :<input type="password" name="password"> -->
-
- <p class="formulaire">
- Votre OS : <select name="os" maxlength=7>
- <option label="------"></option>
- <option>Mac Os</option>
- <option>Windows</option>
- </select>
- </p>
- <p>
- <input type="submit" value="Valider">
- </p>
- </form>
- <p><em>
- Merci
- </em></p>
- </div>
- <script>
- document.querySelector("input[type=submit]").onclick=function(){
- document.cookie="date="+Date.now()/1000
- }
- </script>
- </body>
-</html>