web_AI-3/index.php

44 lines
1.2 KiB
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 -->
2016-12-28 14:35:02 +01:00
<link rel="stylesheet" href="css/stylesheet.css"/>
</head>
<body>
<div>
2016-12-28 14:35:02 +01:00
<div>
<header>
2017-01-11 21:42:17 +01:00
<!-- The title begins here -->
<h1>Home</h1>
<!-- The title begins here -->
<!-- The sidebar naviagtion begins here -->
2016-12-28 14:35:02 +01:00
<nav>
2017-01-11 20:21:10 +01:00
<?php
2017-01-06 13:11:00 +01:00
include 'navigation.php';
2017-01-06 12:48:12 +01:00
?>
2017-01-11 20:30:44 +01:00
<!--Login-->
<form action="signup.php" method="post">
<input type="text" name="first" placeholder="Firstname"><br>
<input type="text" name="last" placeholder="Laststname"><br>
<input type="text" name="uid" placeholder="Username"><br>
<input type="password" name="pwd" placeholder="Password"><br>
<button type="submit">SIGN UP</button>
</form>
<!--Login end-->
2016-12-28 14:35:02 +01:00
</nav>
<!-- The sidebar naviagtion ends here -->
2016-12-28 14:35:02 +01:00
</header>
</div>
</div>
</body>
</html>