index.html 1.1 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
<!doctype html>
<html lang="en">
    <head>
        <meta charset="utf8"/>
        <script src="sugar.js"></script>
        <script>Sugar.extend()</script>
        <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>        
        <link rel="stylesheet" type="text/css" href="https://cdn.datatables.net/1.10.21/css/jquery.dataTables.css">
        <script type="text/javascript" charset="utf8" src="https://cdn.datatables.net/1.10.21/js/jquery.dataTables.js"></script>
        <script src="./houses/module.js" type="module"></script>
        <link rel="stylesheet" href="./stylesheets/main.css"/>

    </head>
    <body>
        <nav-placeholder></nav-placeholder>
        <script src="/navbar/navbar.js"></script>
        <content-body>
            <table-wrapper class="house_table">
Geovanny's avatar
Geovanny committed
19
                <div class="table_header" style="display:none">
Geovanny's avatar
Geovanny committed
20
                    <button class="request_house">Send House Request</button>
21 22 23 24 25 26
                </div>
                <table id="data_table" class="display"></table>
            </table-wrapper>
        </content-body>
    </body>
</html>