The secure website section needs to be reformatted so that it has matching style along with the rest of the website.
29 lines
779 B
PHP
29 lines
779 B
PHP
<!DOCTYPE html>
|
|
<?php
|
|
require_once "../lib/prelude.inc.php";
|
|
?>
|
|
<html>
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>Secure Pages Login</title>
|
|
<link href="../style/default.css" type="text/css" rel="stylesheet">
|
|
</head>
|
|
<body>
|
|
<h1>Secure Pages Login</h1>
|
|
<form action="../post/login.php" method="post">
|
|
<fieldset>
|
|
<legend>Login</legend>
|
|
<p>
|
|
<label for="username">Username:</label>
|
|
<input type="text" id="username" name="username" placeholder="Username">
|
|
</p>
|
|
<p>
|
|
<label for="password">Password:</label>
|
|
<input type="password" id="password" name="password" placeholder="Password">
|
|
</p>
|
|
<input type="submit" name="Submit" value="Submit">
|
|
</fieldset>
|
|
</form>
|
|
</body>
|
|
</html>
|