You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

44 lines
1.2 KiB
HTML

1 year ago
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<link rel="stylesheet" href="/static/main.css">
</head>
<body>
<nav>
<div class = "navLogo">
<img src="/static/logo.png" width = "300px">
</div>
{% if loggedIn == True %}
<div class = "navLinks">
<a href="/">Home</a>
<a href="/upload">Upload</a>
<a href="/sign-out">Sign Out</a>
</div>
{% else %}
<div class = "navLinks">
<a href="/">Home</a>
<a href="/sign-in">Sign In</a>
<a href="/sign-up">Sign Up</a>
</div>
{% endif %}
</nav>
<h1 class = "userTitle">Sign In</h1>
<div class = "uploadFormDiv">
<form action="/sign-in" method = "POST">
<input type="text" name = "username" placeholder="Username">
<input type="password" name = "password" placeholder="Password">
<input type="submit" value="Sign Up">
</form>
</div>
</body>
</html>