<?php include('server.php') ?> <!DOCTYPE html> <html> <head> <script type="text/javascript" src="pdo.js"></script> <link rel="stylesheet" type="text/css" href="pdo.css"> <title>PDO Registration forms </title> </head> <body> <?php if(isset($message)) { echo '<label class="text-danger">'.$message.'</label> '; } ?> <h2> PHP login using PDO</h2> <form method="POST" action="index.php"> <div class="inputs"> <label>Enter your username </label> <input type="text" name="username"> </div> <div class="inputs"> <label> Enter your Password</label> <input type="Password" name="password"> </div> <div class="inputs"> <i...