29 lines
801 B
PHP
29 lines
801 B
PHP
<?php
|
|
session_start();
|
|
?>
|
|
|
|
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Link Buttons Page</title>
|
|
<link rel="stylesheet" href="assets/css/style.css">
|
|
</head>
|
|
<body>
|
|
<?php include($_SERVER['DOCUMENT_ROOT'] . "/includes/header.php"); ?>
|
|
<div class="container">
|
|
<h1>TVPN</h1>
|
|
<div class="buttons">
|
|
<button onclick="openLink('/authenticate')">Authenticate</button>
|
|
<button onclick="openLink('/login')">Login</button>
|
|
<button onclick="openLink('#')">Placeholder</button>
|
|
<button onclick="openLink('#')">Placeholder</button>
|
|
<button onclick="openLink('#')">Placeholder</button>
|
|
</div>
|
|
</div>
|
|
|
|
<script src="script.js"></script>
|
|
</body>
|
|
</html>
|