2018-05-25 20:59:06 +02:00
|
|
|
<!doctype html>
|
|
|
|
<html lang="en">
|
|
|
|
<head>
|
|
|
|
<!-- Required meta tags -->
|
2018-05-26 13:11:57 +02:00
|
|
|
<title>FriendsBook</title>
|
2018-05-25 20:59:06 +02:00
|
|
|
<meta charset="utf-8">
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
|
|
|
|
|
|
|
|
<!-- Bootstrap CSS -->
|
|
|
|
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.1/css/bootstrap.min.css" integrity="sha384-WskhaSGFgHYWDcbwN70/dfYBj47jz9qbsMId/iRN3ewGhXQFZCSftd1LZCfmhktB" crossorigin="anonymous">
|
2018-05-26 14:33:15 +02:00
|
|
|
|
2018-05-25 20:59:06 +02:00
|
|
|
</head>
|
2018-05-26 13:11:57 +02:00
|
|
|
|
|
|
|
|
2018-05-25 20:59:06 +02:00
|
|
|
<body>
|
2018-05-26 13:49:29 +02:00
|
|
|
<?php include('segments/_header.html'); ?>
|
2018-05-25 20:59:06 +02:00
|
|
|
<!--Navbar-->
|
2018-05-26 13:11:57 +02:00
|
|
|
<nav class="navbar sticky-top navbar-expand-lg navbar-dark bg-dark">
|
2018-05-26 13:49:29 +02:00
|
|
|
<a class="navbar-brand" href="#">FriendsBook</a>
|
|
|
|
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarSupportedContent" aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation">
|
|
|
|
<span class="navbar-toggler-icon"></span>
|
|
|
|
</button>
|
|
|
|
|
|
|
|
<div class="collapse navbar-collapse" id="navbarSupportedContent">
|
|
|
|
<ul class="navbar-nav mr-auto">
|
|
|
|
<li class="nav-item active">
|
|
|
|
<a class="nav-link" href="#">Home <span class="sr-only">(current)</span></a>
|
|
|
|
</li>
|
|
|
|
<li class="nav-item">
|
|
|
|
<a class="nav-link" href="#">SPACER</a>
|
|
|
|
</li>
|
|
|
|
<li class="nav-item">
|
|
|
|
<a class="nav-link" href="#">SPACER</a>
|
|
|
|
</li>
|
|
|
|
</ul>
|
|
|
|
<form class="form-inline my-2 my-lg-0">
|
|
|
|
<div class="btn-group" role="group" aria-label="Basic example">
|
|
|
|
<!-- Button trigger modal Login -->
|
|
|
|
<button type="button" class="btn btn-secondary" data-toggle="modal" data-target="#login">
|
|
|
|
Login
|
|
|
|
</button>
|
2018-05-25 20:59:06 +02:00
|
|
|
|
2018-05-26 13:49:29 +02:00
|
|
|
<!-- Button trigger modal Register -->
|
|
|
|
<button type="button" class="btn btn-secondary" data-toggle="modal" data-target="#register">
|
|
|
|
Register
|
|
|
|
</button>
|
|
|
|
</div>
|
|
|
|
</form>
|
2018-05-25 20:59:06 +02:00
|
|
|
</div>
|
2018-05-26 13:49:29 +02:00
|
|
|
</nav>
|
2018-05-25 20:59:06 +02:00
|
|
|
<!-- Modal login-->
|
|
|
|
<div class="modal fade" id="login" tabindex="-1" role="dialog" aria-labelledby="exampleModalLabel" aria-hidden="true">
|
|
|
|
<div class="modal-dialog" role="document">
|
|
|
|
<div class="modal-content">
|
|
|
|
<div class="modal-header">
|
|
|
|
<h5 class="modal-title" id="exampleModalLabel">Login</h5>
|
|
|
|
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
|
|
|
|
<span aria-hidden="true">×</span>
|
|
|
|
</button>
|
|
|
|
</div>
|
|
|
|
<div class="modal-body">
|
|
|
|
Login into your FriendsBook Account!
|
|
|
|
<!--Login-->
|
2018-05-26 11:26:18 +02:00
|
|
|
<form action="index.php" method="post">
|
|
|
|
|
2018-05-25 20:59:06 +02:00
|
|
|
<div class="input-group input-group-sm mb-3">
|
|
|
|
<div class="input-group-prepend">
|
|
|
|
<span class="input-group-text" id="inputGroup-sizing-sm">Username</span>
|
|
|
|
</div>
|
2018-05-26 11:26:18 +02:00
|
|
|
<input type="text" class="form-control" name="loginName" aria-label="Small" aria-describedby="inputGroup-sizing-sm">
|
2018-05-25 20:59:06 +02:00
|
|
|
</div>
|
|
|
|
<div class="input-group input-group-sm mb-3">
|
|
|
|
<div class="input-group-prepend">
|
|
|
|
<span class="input-group-text" id="inputGroup-sizing-sm">Password</span>
|
|
|
|
</div>
|
2018-05-26 11:26:18 +02:00
|
|
|
<input type="password" class="form-control" name="loginPassword" aria-label="Small" aria-describedby="inputGroup-sizing-sm">
|
2018-05-25 20:59:06 +02:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="modal-footer">
|
|
|
|
<button type="button" class="btn btn-secondary" data-dismiss="modal">Close</button>
|
2018-05-26 13:11:57 +02:00
|
|
|
<button type="submit" class="btn btn-primary">Login</button>
|
2018-05-25 20:59:06 +02:00
|
|
|
</div>
|
2018-05-26 11:26:18 +02:00
|
|
|
</form>
|
2018-05-25 20:59:06 +02:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
2018-05-26 13:49:29 +02:00
|
|
|
<!-- Modal Register-->
|
|
|
|
<div class="modal fade" id="register" tabindex="-1" role="dialog" aria-labelledby="exampleModalLabel" aria-hidden="true">
|
|
|
|
<div class="modal-dialog" role="document">
|
|
|
|
<div class="modal-content">
|
|
|
|
<div class="modal-header">
|
|
|
|
<h5 class="modal-title" id="exampleModalLabel">Register</h5>
|
|
|
|
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
|
|
|
|
<span aria-hidden="true">×</span>
|
|
|
|
</button>
|
|
|
|
</div>
|
|
|
|
<div class="modal-body">
|
|
|
|
Join our Community now! #friends
|
|
|
|
<!--Register-->
|
|
|
|
<form action="index.php" method="post">
|
2018-05-26 11:26:18 +02:00
|
|
|
|
2018-05-26 13:49:29 +02:00
|
|
|
<div class="input-group input-group-sm mb-3">
|
|
|
|
<div class="input-group-prepend">
|
|
|
|
<span class="input-group-text" id="inputGroup-sizing-sm">Username</span>
|
|
|
|
</div>
|
|
|
|
<input type="text" class="form-control" name="registerName" aria-label="Small" aria-describedby="inputGroup-sizing-sm">
|
|
|
|
</div>
|
|
|
|
<div class="input-group input-group-sm mb-3">
|
|
|
|
<div class="input-group-prepend">
|
|
|
|
<span class="input-group-text" id="inputGroup-sizing-sm">Password</span>
|
|
|
|
</div>
|
|
|
|
<input type="password" class="form-control" name="registerPassword" aria-label="Small" aria-describedby="inputGroup-sizing-sm">
|
|
|
|
</div>
|
|
|
|
<div class="input-group input-group-sm mb-3">
|
|
|
|
<div class="input-group-prepend">
|
|
|
|
<span class="input-group-text" id="inputGroup-sizing-sm">EmailAdress</span>
|
|
|
|
</div>
|
|
|
|
<input type="password" class="form-control" name="registerMail" aria-label="Small" aria-describedby="inputGroup-sizing-sm">
|
|
|
|
</div>
|
|
|
|
╭∩╮(ಠಠ)╭∩╮
|
|
|
|
</div>
|
|
|
|
<div class="modal-footer">
|
|
|
|
<button type="button" class="btn btn-secondary" data-dismiss="modal">Close</button>
|
|
|
|
<button type="submit" class="btn btn-primary">Create Account</button>
|
|
|
|
</div>
|
2018-05-25 20:59:06 +02:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
2018-05-26 13:49:29 +02:00
|
|
|
<div id="content">
|
2018-05-25 20:59:06 +02:00
|
|
|
|
2018-05-26 13:49:29 +02:00
|
|
|
</div>
|
|
|
|
<div id="phpTest">
|
|
|
|
LoginModalData:
|
|
|
|
Welcome <?php echo $_POST["loginName"]; ?><br>
|
|
|
|
Your Password is: <?php echo $_POST["loginPassword"]; ?><br>
|
|
|
|
<br>
|
|
|
|
RegisterModalData:
|
|
|
|
Welcome <?php echo $_POST["registerName"]; ?><br>
|
|
|
|
Your Password is: <?php echo $_POST["registerPassword"]; ?><br>
|
|
|
|
Your Mail Adress is: <?php echo $_POST["registerMail"]; ?><br>
|
|
|
|
</div>
|
2018-05-25 20:59:06 +02:00
|
|
|
|
|
|
|
|
2018-05-26 13:49:29 +02:00
|
|
|
<!-- Include the footer-->
|
|
|
|
<?php include('segments/_footer.html'); ?>
|
2018-05-25 20:59:06 +02:00
|
|
|
<!-- Optional JavaScript -->
|
|
|
|
|
|
|
|
<!-- jQuery first, then Popper.js, then Bootstrap JS -->
|
|
|
|
<script src="https://code.jquery.com/jquery-3.3.1.slim.min.js" integrity="sha384-q8i/X+965DzO0rT7abK41JStQIAqVgRVzpbzo5smXKp4YfRvH+8abtTE1Pi6jizo" crossorigin="anonymous"></script>
|
|
|
|
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.3/umd/popper.min.js" integrity="sha384-ZMP7rVo3mIykV+2+9J3UJ46jBk0WLaUAdn689aCwoqbBJiSnjAK/l8WvCWPIPm49" crossorigin="anonymous"></script>
|
|
|
|
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.1.1/js/bootstrap.min.js" integrity="sha384-smHYKdLADwkXOn1EmN1qk/HfnUcbVRZyYmZ4qpPea6sjB/pTJ0euyQp0Mk8ck+5T" crossorigin="anonymous"></script>
|
2018-05-26 14:33:15 +02:00
|
|
|
|
|
|
|
<!-- import contentloader-->
|
|
|
|
<script src="js/contentloader.js"></script>
|
2018-05-25 20:59:06 +02:00
|
|
|
</body>
|
|
|
|
</html>
|