mirror of
https://github.com/BreizhHardware/cours-ISEN-MD.git
synced 2026-01-18 16:47:24 +01:00
Obisidian vault auto-backup: 09-01-2026 14:30:36 on . 4 files edited
This commit is contained in:
1
.obsidian/workspace.json
vendored
1
.obsidian/workspace.json
vendored
@@ -231,6 +231,7 @@
|
||||
},
|
||||
"active": "962e723708a621ad",
|
||||
"lastOpenFiles": [
|
||||
"ISEN/Web/TP/TP1/chat.html~",
|
||||
"conflict-files-obsidian-git.md",
|
||||
"ISEN/Traitement du signal/CIPA4/TP/TP5/TP5_MARQUET.doc",
|
||||
"ISEN/Réunion/CIPA 4/Untitled.md",
|
||||
|
||||
@@ -3,6 +3,20 @@
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<title>Chat</title>
|
||||
<style>
|
||||
table {
|
||||
border-collapse: collapse;
|
||||
width: 100%;
|
||||
}
|
||||
th, td {
|
||||
border: 1px solid black;
|
||||
padding: 8px;
|
||||
text-align: left;
|
||||
}
|
||||
th {
|
||||
background-color: #f2f2f2;
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<header>
|
||||
@@ -21,15 +35,12 @@
|
||||
<table>
|
||||
<thead>
|
||||
<tr>
|
||||
<th>Jour</th>
|
||||
<th>Horaires</th>
|
||||
<th>Évènement</th>
|
||||
<th rowspan="2">Jour</th>
|
||||
<th rowspan="2">Horaires</th>
|
||||
<th rowspan="2">Évènement</th>
|
||||
<th colspan="4">Sites</th>
|
||||
</tr>
|
||||
<tr>
|
||||
<th></th>
|
||||
<th></th>
|
||||
<th></th>
|
||||
<th>Brest</th>
|
||||
<th>Caen</th>
|
||||
<th>Nantes</th>
|
||||
@@ -41,10 +52,7 @@
|
||||
<td>Lundi</td>
|
||||
<td>17h - 19h</td>
|
||||
<td>Réunion BDE</td>
|
||||
<td>X</td>
|
||||
<td>X</td>
|
||||
<td>X</td>
|
||||
<td>X</td>
|
||||
<td colspan="4">X</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Mardi</td>
|
||||
|
||||
@@ -3,6 +3,20 @@
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<title>Chat</title>
|
||||
<style>
|
||||
table {
|
||||
border-collapse: collapse;
|
||||
width: 100%;
|
||||
}
|
||||
th, td {
|
||||
border: 1px solid black;
|
||||
padding: 8px;
|
||||
text-align: left;
|
||||
}
|
||||
th {
|
||||
background-color: #f2f2f2;
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<header>
|
||||
@@ -15,6 +29,18 @@
|
||||
</ul>
|
||||
</nav>
|
||||
</header>
|
||||
<section>
|
||||
<h2>Authentification</h2>
|
||||
<form action="chat.html" method="get">
|
||||
<label for="username">Nom d'utilisateur:</label>
|
||||
<input type="text" id="username" name="username" required>
|
||||
<br><br>
|
||||
<label for="password">Mot de passe:</label>
|
||||
<input type="password" id="password" name="password" required>
|
||||
<br><br>
|
||||
<input type="submit" value="Se connecter">
|
||||
</form>
|
||||
</section>
|
||||
<footer>
|
||||
<p>All content copyright ©A3</p>
|
||||
<a href="http://isen-nantes.fr" target="_blank"><p>Lien vers la page du Programmeur</p></a>
|
||||
|
||||
@@ -3,10 +3,24 @@
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<title>Chat</title>
|
||||
<style>
|
||||
table {
|
||||
border-collapse: collapse;
|
||||
width: 100%;
|
||||
}
|
||||
th, td {
|
||||
border: 1px solid black;
|
||||
padding: 8px;
|
||||
text-align: left;
|
||||
}
|
||||
th {
|
||||
background-color: #f2f2f2;
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<header>
|
||||
<h1>Chat en ligne</h1>
|
||||
<h1>Chat en ligne</h1>
|
||||
<nav>
|
||||
<ul>
|
||||
<li><a href="accueil.html">Accueil</a></li>
|
||||
@@ -15,6 +29,22 @@
|
||||
</ul>
|
||||
</nav>
|
||||
</header>
|
||||
<section>
|
||||
<h2>Chat</h2>
|
||||
<form>
|
||||
<div id="channel-refresh">
|
||||
<label for="channel-select">Canaux: </label>
|
||||
<select id="channel-select">
|
||||
<option value="general">Général</option>
|
||||
<option value="random">Aléatoire</option>
|
||||
<option value="projets">Projets</option>
|
||||
<option value="aide">Aide</option>
|
||||
</select>
|
||||
<label for="refresh-delay">Rafraichissement:</label>
|
||||
<input type="number" id="refresh-delay" name="refresh-delay" min="1" max="60" value="5"> secondes
|
||||
</div>
|
||||
</form>
|
||||
</section>
|
||||
<footer>
|
||||
<p>All content copyright ©A3</p>
|
||||
<a href="http://isen-nantes.fr" target="_blank"><p>Lien vers la page du Programmeur</p></a>
|
||||
|
||||
Reference in New Issue
Block a user