Changed spacing in main.html and login.html

This commit is contained in:
ShakedAp 2023-06-26 20:17:18 +03:00
parent cac086f1dd
commit 2bdf8d16b8
2 changed files with 34 additions and 35 deletions

View File

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

View File

@ -1,22 +1,22 @@
<!DOCTYPE html> <!DOCTYPE html>
<html lang="en"> <html lang="en">
<head> <head>
<meta charset="UTF-8"> <meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" type="text/css" href="main.css"> <link rel="stylesheet" type="text/css" href="main.css">
<script defer type="text/javascript" src="client.js"></script> <script defer type="text/javascript" src="client.js"></script>
<title>Client</title> <title>Client</title>
</head> </head>
<body> <body>
<div class="container"> <div class="container">
<header> <header>
<h1>Watch-Together</h1> <h1>Watch-Together</h1>
</header> </header>
<div class="video-wrapper"> <div class="video-wrapper">
<video id="videoPlayer" controls disablePictureInPicture controlsList="nodownload noplaybackrate" muted> <video id="videoPlayer" controls disablePictureInPicture controlsList="nodownload noplaybackrate" muted>
<source src="/video" type="video/mp4" /> <source src="/video" type="video/mp4" />
</video> </video>
</div> </div>
</div> </div>
</body> </body>
</html> </html>