diff options
Diffstat (limited to 'Aufgabe05/login.html')
| -rw-r--r-- | Aufgabe05/login.html | 50 |
1 files changed, 28 insertions, 22 deletions
diff --git a/Aufgabe05/login.html b/Aufgabe05/login.html index 4a46b08..082f1c0 100644 --- a/Aufgabe05/login.html +++ b/Aufgabe05/login.html @@ -6,29 +6,35 @@ <link rel="stylesheet" type="text/css" href="style.css"> </head> <body> + <header><h1>Customer login</h1></header> <nav> - <a href="contact.html">Contact us</a> - <a href="categories.html">Categories</a> - <a href=".">Home</a> + <dl> + <dt><a href="contact.html">Contact us</a></dt> + <dt><a href="categories.html">Categories</a></dt> + <dt><a href=".">Home</a></dt> + </dl> </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"> </div> - <button type="submit" accesskey="l"> - <u>L</u>ogin - </button> - <button type="reset" accesskey="r"> - <u>R</u>eset - </button> - </form> + <div id="content"> + <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"> </div> + <button type="submit" accesskey="l"> + <u>L</u>ogin + </button> + <button type="reset" accesskey="r"> + <u>R</u>eset + </button> + </form> + </div> + <footer>Copyright by SomeCompany Ltd.</footer> </body> </html>
\ No newline at end of file |
