anistream/src/login.html
2023-06-26 20:17:18 +03:00

22 lines
698 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="login.css">
<title>Login Page</title>
</head>
<body>
<div class="login-page">
<h1> Login To Watch-Together Server</h1>
<div class="form">
<form action="/login" method="post" class="login-form">
<input type="text" placeholder="your username" name="username"/>
<input type="password" placeholder="server password" name="password"/>
<button>login</button>
</form>
</div>
</div>
</body>
</html>