diff options
author | cflip <36554078+cflip@users.noreply.github.com> | 2021-03-21 10:54:47 -0600 |
---|---|---|
committer | cflip <36554078+cflip@users.noreply.github.com> | 2021-03-21 10:54:47 -0600 |
commit | 2805ef7311eeb028cd48bffe04a705676c4682be (patch) | |
tree | 59c00c77d5bd59ea89967f18d5bcd6d1b5ad6e01 /register.php | |
parent | f83530a122119d7f69812493f9c2f4987ccb2065 (diff) |
big changes pt1
Diffstat (limited to 'register.php')
-rw-r--r-- | register.php | 37 |
1 files changed, 19 insertions, 18 deletions
diff --git a/register.php b/register.php index efa4486..c17c1dd 100644 --- a/register.php +++ b/register.php @@ -1,17 +1,20 @@ -<?php include_once 'header.php';?> - -<section> - <h2>Register an account</h2> - <form action="register.php" method="post"> - <label for="user_name">Username: </label><br> - <input type="text" name="user_name"><br> - <label for="user_pass">Password: </label><br> - <input type="password" name="user_pass"><br> - <label for="user_pass_check">Re-enter password: </label><br> - <input type="password" name="user_pass_check"><br> - <input type="submit" name="submit"> - </form> - <br> +<!DOCTYPE html> +<html> +<head> + <title>Register an account - cflip.net forum</title> +</head> +<body> +<h2>Register an account</h2> +<form action="register.php" method="post"> + <label for="user_name">Username: </label><br> + <input type="text" name="user_name"><br> + <label for="user_pass">Password: </label><br> + <input type="password" name="user_pass"><br> + <label for="user_pass_check">Re-enter password: </label><br> + <input type="password" name="user_pass_check"><br> + <input type="submit" name="submit"> +</form> +<br> <?php include_once 'includes/db_inc.php'; @@ -101,7 +104,5 @@ if ($_SERVER['REQUEST_METHOD'] == 'POST') { } } ?> - -</section> - -<?php include_once 'footer.php';?> +</body> +</html>
\ No newline at end of file |