blob: a4d092c5b6bcec469fc54caadf7caecb11233639 (
plain) (
blame)
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
|
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta content="width=device-width, initial-scale=1.0, maximum-scale=2.0, user-scalable=yes" name="viewport"/>
<title>Import LDIF addresbook</title>
<style>
#progress-div {
display: none;
}
</style>
</head>
<body>
<h1>Import LDIF addressbook</h1>
<form id="URL-form" submit="#">
<fieldset>
<legend>LDIF location</legend>
<div>
<label for="URL">URL of the LDIF file:</label>
<input name="URL" type="url" required autofocus
placeholder="Enter URL of the LDIF file"
mozactionhint="go">
</div>
<!--div>
<label for="user-name">Username:</label>
<input name="user-name" type="text" required>
</div>
<div>
<label for="password">Password:</label>
<input name="password" type="password" required>
</div-->
<div>
<input name="login" type="submit" value="Load">
</div>
</fieldset>
</form>
<div id="progress-div">
<progress value="0" max="100">0 %</progress>
</div>
<script src="LDIF2Contact/converter.js" type="text/javascript"></script>
<script src="parser/parseLDIF.js" type="text/javascript"></script>
<script src="importAddrBook.js" type="text/javascript"></script>
</body>
</html>
|