Webbserverprogrammering 1

Show sourcecode

The following files exists in this folder. Click to view.

webbserverprogrammering/

admin/
comments.php
dbconnection.php
exercises/
exercises.php
img/
incl/
index.php
login.php
source.php
style/
viewsource.php

login.php

38 lines UTF-8 Windows (CRLF)
<?php

include("incl/config.php");

$title "Logga in";
$pageId "login";
$pageStyle '';
?>
<?php 
include("incl/header.php"); ?>

<!-- sidans huvudinnehåll  -->
<div id="content">
    <aside>
        <a href="../phpmyadmin">Logga in i databasen</a>
    </aside>
<article class="justify border">
    <h1>Logga in</h1>
    <form  method="post" action="admin/index.php">
        <table>
            <tr>
                <td>Användarnamn</td>
                <td><input type="text" name="namn"></td>
            </tr>
            <tr>
                <td>Lösenord</td>
                <td><input type="password" name="lösenord"></td>
            </tr>
            <tr>
                <td></td>
                <td><input type="submit" name="submit"></td>
            </tr>
        </table>
    </form>

</article>
</div>

<?php include("incl/footer.php"); ?>