This repository has been archived on 2023-01-08. You can view files and clone it, but cannot push or open issues or pull requests.
stafett-for-livet/example.php
2021-08-30 17:17:53 +02:00

28 lines
721 B
PHP

<?php
// Parameters that will used in the template file
$templateParameters["title"] = "Eksempel";
// Include the top of page
include_once("template/_header.php");
?>
<h1>Dette er en eksempel side.</h1>
<br>
<h2>Dette er en eksempel side.</h2>
<br>
<h3>Dette er en eksempel side.</h3>
<br>
<p>This will be on the page</p>
<form action="" method="post" style="border: 1px solid #aaa; padding: 12px">
<h2>Login</h2>
<br>
<input type="text" name="" id="" placeholder="Brukernavn">
<input type="password" name="" id="">
<input type="button" value="Logg inn">
</form>
<?php
// Include the rest of the page
include_once("template/_footer.php");
?>