forked from AlexDmr/m1m-clients
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
71 lines (69 loc) · 2.79 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport"
content="height=device-height, width=device-width, initial-scale=1, user-scalable=no" />
<title>Design version : Connect to TActHab environment</title>
<script>
function load() {
let localhost = window.location.protocol + "//" + window.location.host;
let adresse = localStorage.getItem( "TActHab_adresse" ) || localhost;
console.log( "adresse", adresse );
document.querySelector("#adresse").value = adresse;
localStorage.setItem( "TActHab_adresse", adresse);
}
function change(evt) {
//console.log()
localStorage.setItem( "TActHab_adresse", evt.target.value);
}
</script>
</head>
<body onload="load()">
<h1>Connexion à l'environnement TActHab</h1>
<section>
<label>Adresse du serveur: </label>
<input id="adresse" onchange="change(event)"/>
</section>
<h2>Versions (très) basiques</h2>
<ul>
<li><a href="Vanilla_TS_JS/index.html" >JQuery + TypeScript/EcmaScript/Javascript</a></li>
<li><a href="Angular_1_5_x/index.html" >Angular 1.5</a></li>
<li><a href="Angular_2_x/index.html" >Angular 2</a></li>
</ul>
<h2>Versions des étudiants de M1 MIAGE (au 4/11/2016)</h2>
<ul>
<li>
<h3>Notflix/</h3>
<p><a href="Notflix/index.html">Accès sur le Raspberry</a></p>
<p>L'équipe est composée de Hugo Vaillant, Aurélien Fernandes, Alexis Martinier et Luc Ortiz.</p>
<p>Contact: [email protected]</p>
<p>Lien github: <a href="https://github.com/Hyp3ri0n/Notflix">https://github.com/Hyp3ri0n/Notflix</a></p>
<p>Installation en local (dans le répertoire m1m-clients:
<code>
sudo git clone https://github.com/Hyp3ri0n/Notflix<br/>
cd Notflix<br/>
sudo npm install<br/>
sudo gulp
</code>
</p>
</li>
<li>
<h3>ProjectIHM_Angular2</h3>
<p><a href="ProjectIHM_Angular2/index.html">Accès sur le Raspberry</a></p>
<p>L'équipe est composée de Lucas Mirande, Adrien Houry, Charles-Edouard Chomarat, Corentin Pauze et Jolin Fritzgerald.</p>
<p>Contact: [email protected]</p>
<p>Lien github: <a href="https://github.com/lucasmd/ProjectIHM_Angular2">https://github.com/lucasmd/ProjectIHM_Angular2</a></p>
<p>Installation en local (dans le répertoire m1m-clients:
<code>
sudo git clone https://github.com/lucasmd/ProjectIHM_Angular2<br/>
cd ProjectIHM_Angular2<br/>
sudo npm install<br/>
sudo gulp
</code>
</p>
</li>
</ul>
https://github.com/Hyp3ri0n/Notflix
</body>
</html>