Hello, I have downloaded a free login form template but I can’t make it work. My VA is at pilot.liftair.eu. Here is the code:
<!DOCTYPE html>
<html >
<head>
<meta charset=“UTF-8”>
<title>Login form using HTML5 and CSS3</title>
<link rel=“stylesheet” href=“css/style.css”>
</head>
<body>
<body>
<div class=“container”>
<section id=“content”>
<form action=“../../index.php/login” method=“post”>
<h1>Login Form</h1>
<div>
<input type=“text” placeholder=“Username” required=“” id=“username” />
</div>
<div>
<input type=“password” placeholder=“Password” required=“” id=“password” />
</div>
<div>
<input type=“submit” value=“Log in” />
<a href=“#”>Lost your password?</a>
<a href=“#”>Register</a>
</div>
</form><!-- form –>
<div class=“button”>
<a href=“#”>Download source file</a>
</div><!-- button –>
</section><!-- content –>
</div><!-- container –>
</body>
<script src=“js/index.js”></script>
</body>
</html>