changed to iframe content

master
Jakob 2020-03-07 19:06:22 +01:00
parent 7450001815
commit 4eb679bb39
2 changed files with 16 additions and 30 deletions

16
threadr/boards/post.html Normal file
View File

@ -0,0 +1,16 @@
<!DOCTYPE html>
<html>
<head>
<p></p>
%STYLESHEET%
<!--<meta name="viewport" content="width=device-width, initial-scale=1.0"> ToDo: ?-->
</head>
<body>
<div class="form">
<form action="%CONTENT_DIR%/boards/post.php" method="post">
<input type="text" name="post" maxlength="65535" placeholder="You can contribute to the conversation here. Tell us your story in up to 65535 characters..."/>
<input type="submit" value="Post">
</form>
</div>
</body>
</html>

View File

@ -1,30 +0,0 @@
<?php
session_start();
%PLEAZE_NO_CACHE%
%NO_CHEAP_SESSION_STEALING%
$navbar="boards";
?>
<!DOCTYPE html>
<html>
<head>
<p></p>
<title>ThreadR - Create Post</title>
%STYLESHEET%
<link rel="icon" type="image/png" href="%CONTENT_DIR%/img/favicon-32x32.png" sizes="32x32" />
<meta name="viewport" content="width=device-width, initial-scale=1.0">
</head>
<body>
%NAVBAR%
<div class="container">
<div class="item-1">
<h1><center>ThreadR Post</center></h1>
</div>
<div class="item-2 form">
<form action="%CONTENT_DIR%/boards/" method="post">
<input type="text" name="post" maxlength="2000" placeholder="What happened today? Tell me your story in 2000 characters..."/>
<input type="submit" value="Post">
</form>
</div>
</div>
</body>
</html>