reversi/templates/join.html.hbs

33 lines
807 B
Handlebars
Raw Permalink Normal View History

2022-02-05 19:40:42 +00:00
<!DOCTYPE html>
2022-01-29 21:26:32 +00:00
<html>
<head>
<meta charset="utf-8" />
<link rel="stylesheet" type="text/css" href="/style.css" media="all" />
2022-02-05 19:40:42 +00:00
<script src="/join.js" charset="utf-8" defer></script>
2022-01-29 21:26:32 +00:00
<title>Reversi Online</title>
<meta
charset="utf-8"
name="viewport"
content="width=device-width, initial-scale=1"
/>
2022-02-05 19:40:42 +00:00
<link rel="icon" type="image/x-icon" href="./static/favicon.svg" />
2022-01-29 21:26:32 +00:00
</head>
</html>
<body>
<div class="contentdiv">
<p>{{message}}</p><br />
<a
title="copy to clipboard"
2022-01-29 21:26:32 +00:00
onclick="copyURI(event)"
id="urlForCopy"
class="{{hide_url_button}}"
href="{{url_button_url}}"
type="button"
2022-01-30 13:56:58 +00:00
>copy url</a>
2022-01-29 21:26:32 +00:00
<a href={{link_url}}>{{link}}</a>
</div>
<footer>
<span id="status">reversi</span>
</footer>
</body>