-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathexample_unit_select.html
More file actions
73 lines (65 loc) · 2.22 KB
/
example_unit_select.html
File metadata and controls
73 lines (65 loc) · 2.22 KB
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
72
73
<html>
<head>
<title>Login pour le service Distrilog</title>
<link rel="stylesheet" href="/styles/tequila.css"/>
<script language="JavaScript" src="/js/tequila.js"></script>
<script language="JavaScript" src="/js/keyboard.js"></script>
</head>
<body>
<table width="100%" height="100%"><tr><td valign="middle">
<form action="https://tequila.epfl.ch/cgi-bin/tequila/login" method="POST">
<input type="hidden"
id="requestkey"
name="requestkey"
value="nh0opj7ig6n0ln8m8gt1v7whjq7jtnc7">
<input type="hidden" name="identitychosen" value="1">
<table border cellspacing="0" align="center" cellpadding="5">
<tr>
<td bgcolor="#CCCCCC">
<table width="100%">
<tr>
<td>
<img src="/images/EPFL.gif"
alt="EPFL">
</td>
<td bgcolor="#CCCCCC" align="right">
Login pour le service <b>Distrilog</b>
</td>
</tr>
</table>
</td>
</tr>
<tr>
<td align="center">
<table width="98%" cellspacing="0" bgcolor="white">
<tr>
<td width="219">
<img src="/images/eye.gif" width="200" height="270">
</td>
<td width="400">
<h4>Il y a plusieurs comptes correspondant à ce username Choisissez celui que vous désirez utiliser :</h4>
<select name="selectidentity">
<option value="username">
Firstname Lastname (unit1)
</option>
<option value="username@unit2">
Firstname Lastname (unit2)
</option>
<option value="username@unit3">
Firstname Lastname (unit3)
</option>
</select>
<input type="submit" value="OK" id="OK">
</td>
</tr>
</table>
</td>
</tr>
</table>
</form>
</td></tr></table>
<script type="text/javascript" language="JavaScript">
document.getElementById ('OK').focus ();
</script>
</body>
</html>