index.php 1.75 KB
Newer Older
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
<!DOCTYPE html>
 <html lang="fr">
    <head>
        <?php require_once('head.php'); ?>
    </head>

    <body id="page-top">

        <div id="wrapper">
            
            <!-- Sidebar -->
            <?php require_once('sidebar.php'); ?>
        
            <div id="content-wrapper" class="d-flex flex-column">

                <!-- Main Content -->
                <div id="content">

                    <!-- Top Toolbar -->
                    <?php require_once('topToolbar.php'); ?>

                    <!-- Page Content -->
                    <div class="container-fluid" style="display: flex; justify-content: space-around;">
                        <a href="rules.php" class="btn btn-primary btn-icon-split btn-lg" style="display: flex;">
                            <span class="icon text-white-50">
                                <i class="fas fa-book-open"></i>
                            </span>
raphael.peim's avatar
raphael.peim committed
28
                            <!-- <span class="text">Découvrez le mahjong</span> -->
29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46
                            <span class="text">Découvrez le mahjong</span>
                        </a>
                        <a href="login.php" class="btn btn-primary btn-icon-split btn-lg" style="display: flex;">
                            <span class="icon text-white-50">
                                <i class="fas fa-play-circle"></i>
                            </span>
                            <span class="text">Commencez à jouer</span>
                        </a>
                    </div>
                </div>
            </div>
        </div>

        <!-- Scroll to Top Button-->
        <a class="scroll-to-top rounded" href="#page-top">
            <i class="fas fa-angle-up"></i>
        </a>

raphael.peim's avatar
raphael.peim committed
47
        <?php require_once('js.php'); ?>
48 49
    </body>
</html>