2019-02-02 03:49:11 +00:00
|
|
|
<!DOCTYPE HTML>
|
|
|
|
<html>
|
|
|
|
<head>
|
|
|
|
<meta charset='utf-8'>
|
|
|
|
<meta name='viewport' content='width=device-width, initial-scale=1.0'>
|
|
|
|
<title>
|
2019-04-16 17:04:51 +00:00
|
|
|
Circle
|
2019-02-02 03:49:11 +00:00
|
|
|
</title>
|
2019-04-16 17:04:51 +00:00
|
|
|
<link rel='stylesheet' href='/shared/style/modal.css'>
|
|
|
|
<link rel='stylesheet' href='/shared/main/style.css'>
|
2019-02-02 03:49:11 +00:00
|
|
|
<link rel='stylesheet' href='theme.css'>
|
|
|
|
</head>
|
2019-04-16 17:04:51 +00:00
|
|
|
<body>
|
|
|
|
<h1>Circle</h1>
|
|
|
|
<p>
|
|
|
|
Anonymous message board
|
|
|
|
</p>
|
|
|
|
<form method='POST' action='/' id='addMsg'>
|
2019-04-20 22:55:54 +00:00
|
|
|
<textarea id='newMsgText' name='newMsgText' rows=10 cols=50 required minlength="2"></textarea>
|
2019-04-16 17:04:51 +00:00
|
|
|
<br><br>
|
|
|
|
<input class='btn successBtn' value='Post' type='submit'>
|
|
|
|
</form>
|
|
|
|
<br><br>
|
|
|
|
<div id='feed'>
|
|
|
|
<input class='primaryBtn' type='button' id='refreshFeed' value='Refresh Feed'>
|
|
|
|
<br><br>
|
|
|
|
<span id='none'>None Yet :)</span></div>
|
2019-04-16 05:02:09 +00:00
|
|
|
<script src='/shared/misc.js'></script>
|
2019-02-02 03:49:11 +00:00
|
|
|
<script src='board.js'></script>
|
|
|
|
</body>
|
|
|
|
</html>
|