create a registration site and function

This commit is contained in:
Ismail Cadaroski 2017-01-24 19:29:26 +01:00
parent b197ce87aa
commit d024ad5aa3
1 changed files with 34 additions and 0 deletions

34
registrationindex.php Normal file
View File

@ -0,0 +1,34 @@
<!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 -->
<link rel="stylesheet" href="css/stylesheet.css"/>
</head>
<body>
<div>
<div>
<header>
<!-- The title begins here -->
<h1>WebShop NeXt</h1>
<!-- The title begins here -->
<!-- The sidebar naviagtion begins here -->
<nav>
<!--Registration-->
<?php
include 'db/registration.php';
?>
<!--Registration end-->
</nav>
<!-- The sidebar naviagtion ends here -->
</header>
</div>
</div>
</body>
</html>