53 lines
972 B
PHP
53 lines
972 B
PHP
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||
|
<html>
|
||
|
<head>
|
||
|
|
||
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
||
|
<title>Login Form</title>
|
||
|
|
||
|
<link href="style.css" rel="stylesheet" type="text/css" />
|
||
|
|
||
|
|
||
|
|
||
|
</head>
|
||
|
<body>
|
||
|
|
||
|
|
||
|
<div id="wrapper">
|
||
|
|
||
|
|
||
|
<div class="user-icon"></div>
|
||
|
<div class="pass-icon"></div>
|
||
|
|
||
|
|
||
|
|
||
|
<form name="loginform" class="form" action="" method="post">
|
||
|
|
||
|
|
||
|
<div class="header">
|
||
|
<h1>Login</h1>
|
||
|
</div>
|
||
|
|
||
|
|
||
|
<div class="content">
|
||
|
<p>Email</p>
|
||
|
<input name="email" type="text" class="input" value="email" onfocus="[this.value='']"/> <br /><br />
|
||
|
<p>Password</p>
|
||
|
<input name="password" type="password" class="input" value="Password" onfocus="[this.value='']" />
|
||
|
</div>
|
||
|
|
||
|
|
||
|
|
||
|
<div class="footer">
|
||
|
<input type="submit" name="submit" value="Login" class="button" />
|
||
|
</div>
|
||
|
|
||
|
|
||
|
</form>
|
||
|
|
||
|
|
||
|
</div>
|
||
|
|
||
|
|
||
|
</body>
|
||
|
</html>
|