The following files exists in this folder. Click to view.
m03u1.html36 lines UTF-8 Unix (LF)
<!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>