fleast/web/fl.html

64 lines
2 KiB
HTML
Raw Normal View History

2017-10-13 13:49:01 +00:00
<!doctype html>
2017-11-03 10:40:49 +00:00
<html lang="en">
2017-10-13 13:49:01 +00:00
<head>
2018-03-05 14:01:57 +00:00
<meta charset="utf-8">
<title>FLeast</title>
2018-08-13 19:11:12 +00:00
<link rel="stylesheet" href="./style.css">
<link rel="shortcut icon" href="./favicon.ico" type="image/png">
2017-10-13 13:49:01 +00:00
</head>
<body>
2018-03-05 14:01:57 +00:00
<section id="header">
2018-08-13 19:11:12 +00:00
<strong>
<h1>FLeast - your least favourite streamers here</h1>
</strong>
2018-03-05 14:01:57 +00:00
</section>
<section id="pageContent">
<article>
<h2>Usage:</h2>
2018-08-13 19:11:12 +00:00
<p>
Write the name of the game and select the language.<br>
The name must _exactly_ match the name of the game on twitch.tv
i.e. csgo must be "Counter-Strike: Global Offensive".
</p>
<form method="get" action="/">
2018-03-05 14:01:57 +00:00
<table class="Input">
<tbody>
<tr>
2018-08-13 19:11:12 +00:00
<td>
<label>Game </label>
</td>
<td>
<label>Language </label>
</td>
2018-03-05 14:01:57 +00:00
</tr>
<tr>
2018-08-13 19:11:12 +00:00
<td>
<input name="game" type="text" maxlength="255" value=""/>
</td>
<td>
<select class="element select medium" name="lang">
{_opt_langs_}
2018-03-05 14:01:57 +00:00
</select>
</td>
2018-08-13 19:11:12 +00:00
<td>
<input type="submit" value="Search" />
</td>
2018-03-05 14:01:57 +00:00
</tr>
</tbody>
</table>
</form>
</article>
2017-10-13 13:49:01 +00:00
2018-03-05 14:01:57 +00:00
</section>
<footer>
2018-08-13 19:11:12 +00:00
<p>
Developed by Alex Vanin | <a href="https://twitter.com/AlexVanin" target="_blank">twitter</a> |
<a href="https://github.com/AlexVanin/fleast" target="_blank">github</a><br>
Version: {_version_}
</p>
2018-03-05 14:01:57 +00:00
</footer>
2017-10-13 13:49:01 +00:00
</body>
</html>