programko/ulohaformular.html

61 lines
1.6 KiB
HTML
Raw Normal View History

2024-03-21 10:25:45 +01:00
<!DOCTYPE html>
<html lang="sk">
<head>
<meta charset="UTF-8">
<title>formular</title>
<!-- namapovanie css-->
</head>
<body>
<h2>Formular uloha</h2>
<form action="https://localhost/adlerka/action_page.php"
method="get" name="prihlasenie">
<label for="name">Meno</label><br>
<input type="text" id="name" name="fname" value=""><br>
<label for="name1">priezvisko</label><br>
<input type="text" id="name1" name="1name" value=""><br>
</form>
<hr>
<h2><input type="password"></h2>
<form method="get">
<label for="username">Username</label><br>
<input type="text" id="username" name="username"><br>
<label for="password">Password</label><br>
<input type="text" id="password" name="password"><br><br>
<input type="submit" value="stlač">
<input type="reset" value="reset">
<hr>
<label type="pohlavie">Muž</label> <h2><input type="radio"></h2>
<label type="Pohlavie">Žena</label><br> <h2><input type="radio"></h2>
<form>
<label type="username">Username</label><br>
<input for="text" id="username" name="username"><br>
<label for="password">Password</label><br>
<input type="text" id="password" name="password"><br><br>
<input type="submit" value="stlač">
<input type="reset" value="reset">
</form>
<hr>
<h2><input type="email"></h2>
<form method="get">
<label for="email">Enter your email:</label>
<input type="email" id="email" name="email">
<input type="submit" value="Submit">
</form>
<hr>
<h2><input type="file"></h2>
<form method="post">
<label for="mylife">Select a file:</label>
<input type="file" id="myfile" name="myfile" multiple>
<input type="submit" value="Submit">
</form>