View sourcecode

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

index.php

44 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
37
38
39
40
41
42
43
44
<!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="box">
    <form action="output.php" method="post">
        <p> förnamn
        <input type="text" name="Förnamn" required placeholder="Ange ditt förnamn">  <br>

        <p> Efternamn
            <input type="text" name="Efternamn" required placeholder="Ange ditt Efternamn"><br>
        </p>

        <p> Födelsedag
            <input type="date" name="Födelsedag" ><br>
        </p>
        <p>Lösenord
            <input type="password" name="Lösenord" required placeholder="Ange ditt lösenord">
        </p>
        <p> Ange ditt kön:
            <input type="radio" name="kön" value='kvinna' checked> Kvinna
            <input type="radio" name="kön" value='Man' checked> Man 
            <br><br>
            <input type="checkbox" name="kryssruta" required> Jag godkänner villkoren
            <br><br>
            <button class="button" type="submitt" name="submit" value="send">Skicka</button>
        </p>
        





    </form>
    </main>
    
</body>
</html>