web_AI-3/registration.php

39 lines
1002 B
PHP
Raw Normal View History

2017-02-06 21:55:36 +01:00
<?php
include 'functions.php';
?>
2017-02-05 14:49:57 +01:00
<!DOCTYPE html>
<html>
<head>
2017-02-06 21:55:36 +01:00
<!-- 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 -->
<link rel="stylesheet" href="css/loginstyle.css"/>
2017-03-19 15:13:57 +01:00
<title>Businessstreamline</title>
2017-02-05 14:49:57 +01:00
</head>
2017-02-05 14:54:30 +01:00
2017-02-05 14:49:57 +01:00
<body>
2017-02-06 21:55:36 +01:00
<div>
<div>
<header>
<!-- The title begins here -->
2017-02-16 19:38:58 +01:00
<h1>B2B2-Plattform</h1>
2017-02-06 21:55:36 +01:00
</header>
</div>
2017-02-05 14:49:57 +01:00
<div class="form">
2017-02-06 21:55:36 +01:00
<h1>Registration</h1>
2017-03-19 15:42:39 +01:00
<form name="registration" action="<?= $_SERVER['PHP_SELF'] ?>" method="post">
2017-02-06 21:55:36 +01:00
<input type="text" name="username" placeholder="Username" required />
<input type="email" name="email" placeholder="Email" required />
<input type="password" name="password" placeholder="Password" required />
<input type="submit" name="submit" value="Register"/>
</form>
<?php
register();
?>
</div>
2017-02-05 14:49:57 +01:00
</div>
</body>
</html>