aboutsummaryrefslogblamecommitdiffstats
path: root/index.html
blob: a4d092c5b6bcec469fc54caadf7caecb11233639 (plain) (tree)
1
2
3
4
5



                          
                                                                                                                 














                                                              


                                                               


















                                                                
                                                                            
                                                                      


                                                                    
<!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>