19 lines
547 B
HTML
19 lines
547 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>LostCave - Welcome</title>
|
|
</head>
|
|
<body>
|
|
<h1>Welcome to the LostCave WebSite!</h1>
|
|
<p> Login: </p>
|
|
<form action="./content/login.php" method="post">
|
|
<input type="text" name="name" maxlength="20" placeholder="Username" />
|
|
<input type="password" name="password" maxlength="256" placeholder="Password" />
|
|
<input type="submit" value="Log in" />
|
|
</form>
|
|
<form action="./content/signup.php">
|
|
<input type="submit" value="Sign Up"/>
|
|
</form>
|
|
</body>
|
|
</html>
|