summaryrefslogtreecommitdiffstats
path: root/Aufgabe05/login.html
blob: 4a46b08135c2b1d7795b709ac6b4612b7551ddc6 (plain)
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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>User</title>
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
	<nav>
		<a href="contact.html">Contact us</a>
		<a href="categories.html">Categories</a>
		<a href=".">Home</a>
	</nav>
	<form action="http://www-in.fh-swf.de/fbp-cgi/showenv.pl" method="post">
		<h1>User</h1>
		<div class="row">
			<label for="username"><u>U</u>sername:</label><input class="formw" type="text"
				placeholder="Username" id="username" name="username" accesskey="u"
				maxlength="100">
		</div>
		<div class="row">
			<label for="password"><u>P</u>assword:</label><input class="formw" type="password"
				placeholder="Password" id="password" name="password" accesskey="p">
		</div>
		<div class="spacer">&nbsp;</div>
		<button type="submit" accesskey="l">
			<u>L</u>ogin
		</button>
		<button type="reset" accesskey="r">
			<u>R</u>eset
		</button>
	</form>
</body>
</html>