Webbserverprogrammering 1

Show sourcecode

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

webbsrvprg/exercises/ovning9/

dbconnection.php
index.html
ovn_sql1.php
ovn_sql2.php
1/
2/

ovn_sql2.php

18 lines UTF-8 Windows (CRLF)
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Document</title>
</head>
<body>
    <h1>Inloggningssida</h1>
    <form method="post">
        <label for="anvandare">Användarnamn</label> <br>
        <input type="text" name="anvandare"> <br>
        <label for="password">Lösenord</label> <br>
        <input type="password" name="password"> <br>
        <input type="submit">
    </form>
</body>
</html>