mirror of
https://github.com/lovasoa/whitebophir
synced 2024-11-10 14:34:20 +00:00
30 lines
739 B
HTML
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>
|