web_AI-3/index.php

36 lines
998 B
PHP
Raw Normal View History

2017-02-06 21:55:36 +01:00
<?php
include 'functions.php';
?>
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"/>
2017-03-19 14:58:36 +01:00
<title>Businessstreamline</title>
</head>
<body>
2016-12-28 14:35:02 +01:00
<div>
2017-02-05 15:17:19 +01:00
<header>
2017-02-16 19:37:48 +01:00
<h1>B2B2-Plattform</h1>
2017-02-05 15:17:19 +01:00
</header>
</div>
<div class="form">
<h1>Log In</h1>
2017-03-19 15:42:39 +01:00
<form action="<?= $_SERVER['PHP_SELF'] ?>" method="post" name="login">
2017-02-05 15:17:19 +01:00
<input type="text" name="username" placeholder="Username" required />
<input type="password" name="password" placeholder="Password" required />
2017-02-06 21:55:36 +01:00
<input name="submit" type="submit" value="Login"/>
</form>
<p>Not registered yet? <a href='registration.php'>Register Here</a></p>
2017-02-06 19:37:20 +01:00
<?php
2017-02-06 21:55:36 +01:00
login();
2017-02-06 19:37:20 +01:00
?>
2016-12-28 14:35:02 +01:00
</div>
</body>
</html>