PHP Classes

File: app/Views/templates/partials/header.php

Recommend this page to a friend!
  Classes of Rodrigo Faustino   PHP MVC App   app/Views/templates/partials/header.php   Download  
File: app/Views/templates/partials/header.php
Role: Auxiliary script
Content type: text/plain
Description: Configuration script
Class: PHP MVC App
MVC based application for the Web and as an API
Author: By
Last change:
Date: 11 days ago
Size: 598 bytes
 

Contents

Class file image Download
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>My PHP MVC App</title>
    <link rel="stylesheet" href="/assets/css/style.css">
    <script src="/assets/js/darkmode.js" defer></script>
</head>
<body>
    <header>
        <h1>Welcome to My PHP MVC App</h1>
        <nav>
            <ul>
                <li><a href="/">Users</a></li>
                <li><a href="/login">Login</a></li>
                <li><a href="/user/create">Register</a></li>
            </ul>
        </nav>
    </header>