mirror of
https://github.com/AlecM33/Werewolf.git
synced 2025-12-26 15:57:50 +01:00
48 lines
1.8 KiB
HTML
48 lines
1.8 KiB
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
|
|
<title>Werewolf Utility</title>
|
|
<meta name="description" content="A utility to deal Werewolf defaultCards and run games in any setting, on any device.">
|
|
<meta property="og:title" content="Werewolf Utility">
|
|
<meta property="og:type" content="website">
|
|
<meta property="og:url" content="https://play-werewolf.herokuapp.com/">
|
|
<meta property="og:description" content="A utility to deal Werewolf defaultCards and run games in any setting, on any device.">
|
|
<meta property="og:image" content="image.png">
|
|
|
|
<link rel="icon" href="/favicon.ico">
|
|
<link rel="icon" href="/favicon.svg" type="image/svg+xml">
|
|
<link rel="apple-touch-icon" href="/apple-touch-icon.png">
|
|
|
|
<link rel="stylesheet" href="../styles/GLOBAL.css">
|
|
<link rel="stylesheet" href="../styles/home.css">
|
|
</head>
|
|
<body>
|
|
<img src="../images/logo_cropped.gif"/>
|
|
<h3>A tool to run werewolf when not in-person, or in any setting without a deck of cards.</h3>
|
|
<a href="/create">
|
|
<button>Create A Game</button>
|
|
</a>
|
|
<div id="join-container">
|
|
<label for="join-form">Join A Game</label>
|
|
<form id="join-form">
|
|
<div>
|
|
<label for="room-code">Room Code</label>
|
|
<input id="room-code" type="text" placeholder="six-character code..." required/>
|
|
</div>
|
|
<input id="join-button" type="submit" value="Join"/>
|
|
</form>
|
|
</div>
|
|
<script type="module">
|
|
import { home } from "../scripts/home.js";
|
|
home();
|
|
</script>
|
|
<script src="/socket.io/socket.io.js"></script>
|
|
<script>
|
|
const socket = io();
|
|
</script>
|
|
</body>
|
|
</html>
|