33 lines
801 B
HTML
33 lines
801 B
HTML
<!doctype html>
|
|
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
|
|
<title>Chat</title>
|
|
<link rel="icon" href="/img/favicon.png">
|
|
<link rel="stylesheet" href="/css/styles.min.css">
|
|
<meta name="description" content="Chat">
|
|
<meta name="author" content="SitePoint">
|
|
|
|
|
|
</head>
|
|
|
|
<body>
|
|
<div class="centered-form">
|
|
<div class="centered-form__box">
|
|
<h1>Join</h1>
|
|
<form action="/chat.html">
|
|
<label>Display name</label>
|
|
<input type="text" name="username" placeholder="Display name" required>
|
|
<label>Room</label>
|
|
<input type="text" name="room" placeholder="Room" required>
|
|
<button type="submit">Join</button>
|
|
</form>
|
|
<p class="myPar">or</p>
|
|
<button type="submit">Generate room</button>
|
|
</div>
|
|
|
|
</div>
|
|
</body>
|
|
</html> |