web_AI-3/index.php

32 lines
902 B
PHP
Raw Normal View History

2016-11-25 11:20:00 +01:00
<!DOCTYPE html>
<html>
<head>
<!-- enable utf-8 encoding for umlauts etc.-->
<meta charset="utf-8">
<!-- Description of what this dose -->
<meta name ="viewport" content="width=device-width, initial-scale=1">
<!-- link to the default css file -->
2017-02-05 14:48:16 +01:00
<link rel="stylesheet" href="css/loginstyle.css"/>
</head>
<body>
2016-12-28 14:35:02 +01:00
<div>
2017-02-05 15:17:19 +01:00
<header>
<h1>WebShop NeXt</h1>
</header>
</div>
<div class="form">
<h1>Log In</h1>
<form action="" method="post" name="login">
<input type="text" name="username" placeholder="Username" required />
<input type="password" name="password" placeholder="Password" required />
2017-02-05 22:11:00 +01:00
<input name="submit" type="submit"/>
2017-02-06 19:37:20 +01:00
<?php
include 'login.php';
?>
2017-02-05 15:17:19 +01:00
</form>
<p>Not registered yet? <a href='registrationindex.php'>Register Here</a></p>
2016-12-28 14:35:02 +01:00
</div>
</body>
</html>