blob: c647f51752fa0050e9d68b21611370ed350cf2fd (
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
|
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>User</title>
<link rel="stylesheet" type="text/css" href="underline.css">
</head>
<body>
<a href="./" accesskey="b"><em>B</em>ack
</a>
<form action="http://www-in.fh-swf.de/fbp-cgi/showenv.pl" method="post">
<h1>User</h1>
<label for="username"><u>U</u>sername:</label><input type="text"
placeholder="Username" id="username" name="username" accesskey="u"
maxlength="100"><br> <label for="password"><u>P</u>assword:</label><input
type="password" placeholder="Password" id="password" name="password"
accesskey="p"><br> <label for="passwordagain">Reenter P<u>a</u>ssword:</label><input
type="password" placeholder="Reenter Password" id="passwordagain" name="passwordagain"
accesskey="a"><br>
<button type="submit" accesskey="e">
R<u>e</u>gister
</button>
<button type="reset" accesskey="r">
<u>R</u>eset
</button>
</form>
</body>
</html>
|