30 lines
652 B
HTML
30 lines
652 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<link rel="icon" href="/favicon.ico" type="image/webp" />
|
|
<link rel="stylesheet" href="/style.css" />
|
|
<title>Profile</title>
|
|
</head>
|
|
<body>
|
|
<h1>Profile!</h1>
|
|
<p id="Account">Sign Up. Or don't. Up to you.</p>
|
|
|
|
<form action="" method="GET" id="Signup">
|
|
<div>
|
|
<label>Username</label>
|
|
<input type="text" name="Username" required />
|
|
</div>
|
|
<div>
|
|
<label>Password</label>
|
|
<input type="text" name="Password" required />
|
|
</div>
|
|
<div>
|
|
<input type="submit" value="Sign Up" />
|
|
</div>
|
|
</form>
|
|
|
|
<p id="Information"></p>
|
|
|
|
</body>
|
|
</html>
|