forked from root/threadr.lostcave.ddnss.de
Merge branch 'master' of https://lostcave.ddnss.de/git/root/web-deployment
commit
14aea7dbe4
|
@ -0,0 +1,19 @@
|
|||
<?php
|
||||
session_start();
|
||||
%NO_CHEAP_SESSION_STEALING%
|
||||
%PLEAZE_NO_CACHE%
|
||||
$id=$_GET['id'];
|
||||
?>
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<p></p>
|
||||
%STYLESHEET%
|
||||
<!--<meta name="viewport" content="width=device-width, initial-scale=1.0"> ToDo: ?-->
|
||||
</head>
|
||||
<body>
|
||||
<?php
|
||||
echo "<p>EPIC FEED</p>";
|
||||
?>
|
||||
</body>
|
||||
</html>
|
|
@ -0,0 +1,19 @@
|
|||
<?php
|
||||
session_start();
|
||||
%NO_CHEAP_SESSION_STEALING%
|
||||
%PLEAZE_NO_CACHE%
|
||||
$id=$_GET['id'];
|
||||
?>
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<p></p>
|
||||
%STYLESHEET%
|
||||
<!--<meta name="viewport" content="width=device-width, initial-scale=1.0"> ToDo: ?-->
|
||||
</head>
|
||||
<body>
|
||||
<?php
|
||||
echo "<a href='%CONTENT_DIR%/board/post.php?id=$id'><button> Post something </button></a>";
|
||||
?>
|
||||
</body>
|
||||
</html>
|
|
@ -35,9 +35,10 @@ $id=$_GET['id'];
|
|||
</center></h1>
|
||||
</div>
|
||||
<div class="item-2">
|
||||
<?php
|
||||
echo "<a href='%CONTENT_DIR%/boards/post.php?id=$id'><button> Post something </button></a>";
|
||||
?>
|
||||
<iframe src="%CONTENT_DIR%/board/board.php?id=$id"></iframe>
|
||||
</div>
|
||||
<div class="item-3">
|
||||
<iframe src="%CONTENT_DIR%/board/default.php?id=$id"></iframe>
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
|
|
|
@ -1,3 +1,9 @@
|
|||
<?php
|
||||
session_start();
|
||||
%NO_CHEAP_SESSION_STEALING%
|
||||
%PLEAZE_NO_CACHE%
|
||||
$id=$_GET['id'];
|
||||
?>
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
|
@ -7,7 +13,7 @@
|
|||
</head>
|
||||
<body>
|
||||
<div class="form">
|
||||
<form action="%CONTENT_DIR%/boards/post.php" method="post">
|
||||
<form action="%CONTENT_DIR%/board/submit.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>
|
|
@ -316,4 +316,10 @@ div.form {
|
|||
background-color: #f3d2c1;
|
||||
padding: 14px 20px;
|
||||
box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
|
||||
}
|
||||
}
|
||||
|
||||
iframe {
|
||||
border: none;
|
||||
margin: 0px;
|
||||
width: 100%;
|
||||
}
|
Loading…
Reference in New Issue