Gitlab@Informatics

Skip to content
Snippets Groups Projects
Select Git revision
  • fd460d695c06ba383c8967844ad3fa442af8c0a1
  • main default protected
  • revert
  • 64160159
  • 64160292
  • 64160073
  • html-v_page
  • 64160174
  • 64160072
  • 64160295
  • production
11 results

v_admin_home.blade.php

Blame
  • v_admin_home.blade.php 556 B
    <!DOCTYPE html>
    <html>
    <head>
        <title>Admin Dashboard</title>
        <link rel="stylesheet" href="/css/style.css">
    </head>
    <body>
        <div class="sidebar">
            <h3>My Website</h3>
            <ul>
                <li><a href="#">Dashboard</a></li>
                <li><a href="#">Users</a></li>
                <li><a href="#">Posts</a></li>
            </ul>
        </div>
        <div class="content">
            <h1>Welcome to the Admin Dashboard</h1>
            <p>This is where you can manage your website.</p>
        </div>
        <script src="/js/script.js"></script>
    </body>
    </html>