diff --git a/lab6-GET.html b/lab6-GET.html new file mode 100644 index 0000000000000000000000000000000000000000..baf60f8ba56b7c940ef47a6da7aeb48107bbeed6 --- /dev/null +++ b/lab6-GET.html @@ -0,0 +1,24 @@ +<!DOCTYPE html> +<html lang="en"> + <head> + <meta charset='utf-8' /> + <title>COMP30023 HTTP Server</title> + </head> + + <body> + <h1>COMP30023 HTTP Server</h1> + + <img + src="https://brandhub.unimelb.edu.au/guidelines/logos/04_Logo_Vertical-Housed.jpg" + alt="HTML5 Icon" + style="width:400px;height:400px;" + /> + + <p>Welcome to our server, please enter your name below</p> + + <form method="POST"> + Name: <input type="text" name="user" /> + <input type="submit" class="button" /> + </form> + </body> +</html>