View sourcecode

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

m03u1.html

36 lines UTF-8 Unix (LF)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>m03u1</title>
    <link rel="stylesheet" href="bulma.css">
</head> 
<body>
    <main class="m-5">
        <form action="mottagarsida.php" method="post">
            <p><label for="förnamn">Förnamn</label>
            <input type="text" name="förnamn" required placeholder="Ange ditt namn"></p>

            <p><label for="efternamn">Efternamn</label>
            <input type="text" name="efternamn" required placeholder="Ange ditt efternamn"></p>

            <p><label for="födelsedag">Födelsedag</label>
            <input type="date" name="birthday" required></p>

            <p><label for="lösenord">Lösenord</label>
            <input type="text" name="lösenord" required></p>



            <p>Ange ditt kön:</p>
            <input type="radio" name="kön" value="man" checked>Man
            <input type="radio" name="kön" value="kvinna">Kvinna
            <br><br>
            <input type="checkbox" name="villkoren" required>Godkänner villkoren
            <br><br>
            <button class="button" type="submit" name="submit" value="send">Skicka</button>
        </form>
    </main>
</body>
</html>