whitebophir/client-data/index.html
2018-11-27 14:46:57 +01:00

30 lines
739 B
HTML

<!DOCTYPE html>
<html>
<!-- This is a quick and dirty draft.-->
<head>
<meta charset="utf-8" />
<title>WBO - Welcome</title>
<link rel="icon" type="image/png" href="favicon.ico" />
<link rel="stylesheet" href="index.css" />
</head>
<body>
<header>
<h1>Whitebophir</h1> - <h2>Welcome</h2>
</header>
<main>
<p>Welcome to <b>WBO</b>. You can go to <a href="/boards/anonymous">the public board</a>
or create a new one with the form below. To share a board, just send it's URL to your friends.</p>
<form onsubmit="window.location='/boards/'+document.getElementById('board').value; return false;">
<input type="text" id="board" placeholder="Name of the board..."/>
<input type="submit" value="Go">
</form>
</main>
</body>
</html>