Duplicate fields showing on webpage

Duplicate fields showing on webpage


<!doctype html>

<!--[if lt IE 7 ]> <html lang="en" class="no-js ie6"> <![endif]-->
<!--[if IE 7 ]>    <html lang="en" class="no-js ie7"> <![endif]-->
<!--[if IE 8 ]>    <html lang="en" class="no-js ie8"> <![endif]-->
<!--[if IE 9 ]>    <html lang="en" class="no-js ie9"> <![endif]-->
<!--[if (gt IE 9)|!(IE)]><!--> <html lang="en" class="no-js"> <!--<![endif]-->

    <head>
        <meta http-equiv="content-type" content="text/html;charset=utf-8">
        <meta charset="utf-8">
        <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
        <meta name="author" content="Eric March Deliace Enterprises LLC">
        <meta name="viewport" content="width=device-width, initial-scale=1.0">
        <meta name="robots" content="noindex">
        <!--[if IE]><meta http-equiv="imagetoolbar" content="no" /><![endif]-->

       

         <link rel="stylesheet" href="http://code.jquery.com/ui/1.10.3/themes/black-tie/jquery-ui.css" />
<script src="http://code.jquery.com/jquery-1.9.1.js"></script>
<script src="http://code.jquery.com/ui/1.10.3/jquery-ui.js"></script
        <link rel="stylesheet" href="/resources/demos/style.css" />
       

    </head>
    <body>
                <div id="header">
            <ul class="sf-menu">
                <li><a href="index">Home</a></li>
                <li><a href="Accounts">Accounts</a>
                <li><a href="Account/new">Add a new Account</a>
                                            </ul>
                </li>
                                <li><a href="logout">Logout</a></li>
            </ul>
        </div>
       
       
        <div id="content">
<table cellpadding="0" cellspacing="0" border="0" class="display" id="login" style="width: 100%;">
    <tr>
        <td>
            <form method="post">
                <fieldset>
                    <legend>Login</legend>
                        <label for="Username">Username</label>
                        <input class="required" type="text" name="Username" id="Username">
                        <label for="Password">Password</label>
                        <input class="required" type="password" name="Password" id="Password">
                        <br><br>
                        <input type="submit" value="Login">
                </fieldset>
            </form>
        </td>
    </tr>
</table>
        </div>
        <script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jqueryui/1.8.6/jquery-ui.min.js"></script>
        <script type="text/javascript" src="libs/superfish/js/hoverIntent.js"></script>
        <script type="text/javascript" src="libs/superfish/js/jquery.bgiframe.min.js"></script>
        <script type="text/javascript" src="libs/superfish/js/superfish.js"></script>
        <script type="text/javascript" src="libs/superfish/js/supersubs.js"></script>
        <script type="text/javascript" src="libs/AnyTime/anytimec.js"></script>
        <script type="text/javascript" src="libs/AnyTime/anytimetz.js"></script>
        <script type="text/javascript" src="libs/jeditable/jquery.jeditable.mini.js"></script>
        <script type="text/javascript" src="libs/jQueryUI/js/combobox.js"></script>
        <script type="text/javascript" src="libs/jquery-validate/jquery.validate.pack.js"></script>

        <script type="text/javascript">
            $(document).ready(function(){
            // Setup buttons
                $(".button").button();

            // Initialise Superfish
                $('ul.sf-menu').supersubs({
                    minWidth:    6,
                    maxWidth:    27,
                    extraWidth:  1
                }).superfish({
                    pathClass:  'current'
                });

            // Initialise Superfish
                $('ul.sf-menuUP').supersubs({
                    minWidth:    6,
                    maxWidth:    27,
                    extraWidth:  1
                }).superfish({
                    pathClass:  'current'
                });

            // Form validation
                $("form").validate();

            // Anytime
                $('.anytime').AnyTime_picker({
                    format: "%Z-%m-%d",
                    firstDOW: 1
                });

                $('.datepicker').datepicker({
                    changeYear:         true,
                    autoSize:           false,
                    changeMonth:        true,
                    selectOtherMonths:  true,
                    showOtherMonths:    true,
                });

            // Dialogs
                $( "#dialog-message" ).dialog({
                    modal: false,
                    buttons: {
                        Ok: function() {
                            $( this ).dialog( "close" );
                        }
                    }
                });
               
                function block_backspace(event, pressed, combo) {
                    if ($(document.activeElement).is("input")) {
                        return;
                    }
                    if ($(document.activeElement).is("textarea")) {
                        return;
                    }
                    if ($(document.activeElement).is("password")) {
                        return;
                    }
                    return false;
                }
               
                KeyboardJS.on('backspace', block_backspace );
            });
        </script>

    </body>

       
       

      
    </body>
</html>