18 lines
485 B
PHP
18 lines
485 B
PHP
|
<?php $this->view('template/header', ['title' => $title]); ?>
|
||
|
|
||
|
<h1>Logg inn</h1>
|
||
|
<p>Fyll inn påloggingsinformasjonen din.</p>
|
||
|
<form method="post">
|
||
|
<label for="username">Brukernavn:</label>
|
||
|
<br>
|
||
|
<input type="text" id="username" name="username">
|
||
|
<br>
|
||
|
<label for="password">Passord:</label>
|
||
|
<br>
|
||
|
<input type="password" id="password" name="password">
|
||
|
<br>
|
||
|
<br>
|
||
|
<input type="submit" value="Bekreft">
|
||
|
</form>
|
||
|
|
||
|
<?php $this->view('template/footer'); ?>
|