gnuherds-app-dev
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Login menu from scratch


From: Victor Engmark
Subject: Login menu from scratch
Date: Fri, 13 Apr 2007 17:24:26 +0200

Here's a reworking of the login menu,

Notes:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" " http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd ">
<html xmlns=" http://www.w3.org/1999/xhtml" xml:lang="en">
<head>
<title>Test</title>
<style type="text/css">
* {
  margin: 0;
  padding: 0;
  }
div {
  border: 1px solid black;
  padding: 1ex;
  }
#contents {
  float: left;
  border: none;
  padding-bottom: 0;
  }
#login {
  margin-bottom: 1ex;
  }
#login *, #register * {
  display: block;
  }
#login_submit {
  margin: 0 auto 0 auto;
  }
h2, a {
  text-align: center;
  }
</style>
</head>
<body>
<div id="contents">
  <div id="login">
    <h2>Login</h2>
    <label for="">    <input name="email" id="email" size="22" maxlength="100" type="text"/>
    <label for=""
    <input name="password" id="password" size="22" maxlength="100" type="password"/>
    <input name="login" id="login_submit" value="Log in" type="submit"/>
    <a href="" title="Retrieve your password">Lost password?</a>
  </div>
  <div id="register">
    <h2>Register</h2>
    <a href="" Person.php" title="Register a new person">Person</a>
    <a href="" title="Register a new company">Company</a>
    <a href="" title="Register a new non-profit organization">Non-profit</a>
  </div>
</div>
</body>
</html>

--
Victor Engmark
Quidquid latine dictum sit, altum videtur - What is said in Latin, sounds profound
reply via email to

[Prev in Thread] Current Thread [Next in Thread]