aboutsummaryrefslogtreecommitdiffstats
path: root/index.html
diff options
context:
space:
mode:
Diffstat (limited to 'index.html')
-rw-r--r--index.html43
1 files changed, 43 insertions, 0 deletions
diff --git a/index.html b/index.html
new file mode 100644
index 0000000..f37a14f
--- /dev/null
+++ b/index.html
@@ -0,0 +1,43 @@
+<!DOCTYPE html>
+<html>
+<head>
+ <meta charset="utf-8">
+ <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>
+ </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="libs/parseLDIF.js" type="text/javascript"></script>
+ <script src="importAddrBook.js" type="text/javascript"></script>
+</body>
+</html>